add_server_config
Easily add and manage SSH server configurations by specifying name, IP, user, password, and port for remote server access. Supports default and custom SSH settings.
Instructions
动态添加服务器配置 参数:
name: 服务器名称
ip: 服务器IP地址
user: SSH用户名
password: SSH密码
port: SSH端口,默认22
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ip | Yes | ||
name | Yes | ||
password | Yes | ||
port | No | ||
user | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ip": {
"title": "Ip",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"password": {
"title": "Password",
"type": "string"
},
"port": {
"default": 22,
"title": "Port",
"type": "integer"
},
"user": {
"title": "User",
"type": "string"
}
},
"required": [
"name",
"ip",
"user",
"password"
],
"title": "add_server_configArguments",
"type": "object"
}