ssh_tool
Connect to an SSH server and execute commands remotely using this tool from the ToolBox MCP Server. Ideal for streamlined server management and automation tasks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to execute | |
serverName | Yes | SSH server name |
Input Schema (JSON Schema)
{
"description": "Connect to SSH server and execute commands",
"name": "ssh_tool",
"properties": {
"command": {
"description": "Command to execute",
"type": "string"
},
"serverName": {
"description": "SSH server name",
"type": "string"
}
},
"required": [
"serverName",
"command"
],
"type": "object"
}