SSH Remote MCP Server
Enables SSH remote access to servers through Claude, allowing users to execute commands, transfer files via SFTP, and manage multiple remote connections using natural language.
README
SSH Remote MCP Server
SSH remote access for Claude Code through Model Context Protocol (MCP).
Quick Start
-
Install:
pip install -r requirements.txt -
Configure Claude Desktop:
For Claude Desktop App: Add to
%APPDATA%\Claude\claude_desktop_config.json(Windows) or~/Library/Application Support/Claude/claude_desktop_config.json(Mac):{ "mcpServers": { "ssh-remote": { "command": "python", "args": ["/absolute/path/to/ssh_mcp_server.py"] } } }For Claude Code: Add to your Claude Code MCP config:
{ "ssh-remote": { "command": "python", "args": ["/path/to/ssh_mcp_server.py"] } } -
Restart Claude Desktop and test:
Just chat naturally with Claude:
- "Connect to my server at 192.168.1.100 with username ubuntu and password mypass"
- "List files in the home directory on my server"
- "Upload file.txt to /home/ubuntu/ on the server"
- "Run 'htop' command on my remote server"
Features
- Connect to remote servers via SSH
- Execute commands remotely
- Upload/download files via SFTP
- Manage multiple connections
- Health monitoring
Configuration Example
{
"mcpServers": {
"ssh-remote": {
"command": "python",
"args": ["/absolute/path/to/ssh_mcp_server.py"]
}
}
}
Usage Examples
Connect with password:
Connect to 192.168.1.100 with username ubuntu and password mypass
Connect with SSH key:
Connect to myserver.com using SSH key ~/.ssh/id_rsa as user admin
Execute commands:
List files in /home directory on my server
Run 'top' command on the remote server
File transfers:
Upload local file.txt to /home/user/ on the server
Download /var/log/app.log from the server
Requirements
- Python 3.7+
- paramiko
- mcp
Security
- Automatic host key acceptance
- Supports password and key authentication
- Connection timeouts enforced
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
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.