SSH MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_TRANSPORT | No | Transport mode: stdio, sse, streamable-http (defaults to stdio) | stdio |
| SSH_CONFIG_PATH | No | Path to SSH config file (defaults to ~/.ssh/config) | ~/.ssh/config |
| SSH_MCP_LOG_DIR | No | Directory for per-command log files (defaults to OS-specific path; set to false to disable logging) | |
| PROXY_CONFIG_PATH | No | Path to JSON file containing SOCKS5 proxy configurations (optional) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| execute_ssh_commandA | Run a shell command on a remote host over SSH. |
| list_ssh_hostsA | List all host aliases from the SSH config. |
| get_host_infoA | Get config details (hostname, port, user, key) for a host alias. |
| test_ssh_connectionA | Test SSH connectivity to a host without running a command. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: listing hosts, fetching host details, testing connectivity, and executing commands. There is no overlap between them.
All tool names follow the consistent verb_noun pattern with underscores: execute_ssh_command, list_ssh_hosts, get_host_info, test_ssh_connection. The naming is uniform and predictable.
Four tools is a well-scoped set for an SSH server, covering the essential operations without unnecessary bloat. Each tool earns its place.
Core SSH workflows are covered: discover hosts, inspect config, test connectivity, and run commands. Minor gaps exist such as file transfer or session management, but the set is functional for its stated purpose.