get_os_details
Retrieve detailed operating system information remotely by specifying hostname, username, and optional credentials using this server monitoring utility from OPS MCP Server.
Instructions
获取操作系统详细信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hostname | Yes | ||
password | No | ||
port | No | ||
timeout | No | ||
username | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hostname": {
"title": "Hostname",
"type": "string"
},
"password": {
"default": "",
"title": "Password",
"type": "string"
},
"port": {
"default": 22,
"title": "Port",
"type": "integer"
},
"timeout": {
"default": 30,
"title": "Timeout",
"type": "integer"
},
"username": {
"title": "Username",
"type": "string"
}
},
"required": [
"hostname",
"username"
],
"title": "get_os_detailsArguments",
"type": "object"
}