Super Windows CLI MCP Server
by delorenj
ssh_execute
Execute a command on a remote host via SSH
Example usage:
Copy
{
"connectionId": "raspberry-pi",
"command": "uname -a"
}
Configuration required in config.json:
Copy
{
"ssh": {
"enabled": true,
"connections": {
"raspberry-pi": {
"host": "raspberrypi.local",
"port": 22,
"username": "pi",
"password": "raspberry"
}
}
}
}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to execute | |
connectionId | Yes | ID of the SSH connection to use |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to execute",
"type": "string"
},
"connectionId": {
"description": "ID of the SSH connection to use",
"enum": [],
"type": "string"
}
},
"required": [
"connectionId",
"command"
],
"type": "object"
}