ssh-agent-mcp
Enables AI assistants to manage SSH connections, execute commands, and transfer files via SFTP over the Model Context Protocol.
README
SSH Agent MCP
Manage SSH and SFTP via MCP tools for AI assistants.
SSH Agent MCP is a Python-based MCP (Model Context Protocol) stdio server that lets AI assistants manage SSH connections, execute commands, and transfer files via SFTP. It supports zero-argument startup, pure CLI configuration, and JSON config files, making it simple to operate multiple remote servers securely.
- Requires: Python >= 3.12
- Project status: Beta
Why uvx?
- No local install: run
uvx ssh-agent-mcp@latestdirectly - Always up-to-date: pin to
@latestfor consistent versioning - Ideal for desktop assistants: simplest setup for Claude Desktop
Why SSH Agent MCP?
- Multiple concurrent sessions: manage and track many SSH connections at once
- Async long-running tasks: stream outputs and control jobs like
top,tail, logs - Built-in SFTP: upload/download, list, mkdir, remove, and rename directories/files
- Auto keepalive & reconnect: maintain session health and minimize drops
- Interactive commands: handle
sudo, shells, editors with input events
Install
- Recommended (no local install):
uvx ssh-agent-mcp@latest - Pip (use PyPI to avoid cached mirrors):
pip install -i https://pypi.org/simple ssh-agent-mcp - Externally managed environments: use virtualenv or pipx
python -m venv .venv && source .venv/bin/activatepipx install ssh-agent-mcp
Quick Start
Run via uvx (Claude Desktop)
Minimal config:
{
"mcpServers": {
"ssh-mcp": {
"command": "uvx",
"args": ["ssh-agent-mcp@latest"]
}
}
}
The assistant can then connect using ssh_connect or ssh_connect_by_name.
CLI examples
- Zero-argument startup:
ssh-agent-mcp - Direct params:
ssh-agent-mcp --host example.com --user admin --password secret - With config file:
ssh-agent-mcp --config /path/to/ssh_config.json --connection production
Minimal config file
ssh_config.json:
{
"connections": [
{
"name": "production",
"host": "prod.example.com",
"username": "admin",
"private_key": "/home/user/.ssh/id_rsa"
}
],
"auto_connect": ["production"]
}
Tools (MCP)
- Connection:
ssh_connect,ssh_connect_by_name,ssh_disconnect,ssh_list_connections - Commands:
ssh_execute,ssh_execute_interactive,ssh_execute_async - Lifecycle:
ssh_check_status,ssh_terminate,ssh_list_async - SFTP:
sftp_upload,sftp_download,sftp_list,sftp_mkdir,sftp_remove,sftp_rename - Files:
remote_read_file,remote_write_file - Status:
ssh_status
Example: Connect and Execute
{
"tool": "ssh_connect",
"params": {
"name": "prod",
"host": "prod.example.com",
"username": "admin",
"private_key": "/home/user/.ssh/id_rsa"
}
}
{
"tool": "ssh_execute",
"params": {
"connection": "prod",
"command": "uname -a"
}
}
Notes
- Prefer
uvx ssh-agent-mcp@latestfor frictionless use. - If domestic mirrors cache old versions, specify PyPI index explicitly.
- For full CLI options and advanced usage, see the Chinese guide:
README_CN.md.
Badges & Links
- Repository: https://github.com/zhijun/ssh-mcp
- Issues: https://github.com/zhijun/ssh-mcp/issues
- PyPI: https://pypi.org/project/ssh-agent-mcp/
License
MIT License. See LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.