Super Windows CLI MCP Server
by delorenj
ssh_disconnect
Disconnect from an SSH server
Example usage:
Copy
{
"connectionId": "raspberry-pi"
}
Use this to cleanly close SSH connections when they're no longer needed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | ID of the SSH connection to disconnect |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "ID of the SSH connection to disconnect",
"enum": [],
"type": "string"
}
},
"required": [
"connectionId"
],
"type": "object"
}