SSH MCP - tools for remote SSH operations for debugging
Project description
SSH MCP Server
A Machine Control Protocol (MCP) server that provides tools for LLMs to safely SSH into remote dev/test machines.
Features
- SSH connection management to remote machines
- Run query scripts for retrieving information
- Cautiously run modifying scripts for debugging purposes
- Secure credential management using SSH key authentication
Tools
run_query_script
Executes read-only shell scripts on remote machines to gather information without modifying the system.
Example:
result = await run_query_script(
hostname="192.168.1.100",
script="cat /var/log/syslog | grep ERROR",
username="admin" # Optional, defaults to root
)
run_dangerous_script
Executes scripts that might modify the remote system. Includes safety confirmations and warnings.
Example:
result = await run_dangerous_script(
hostname="192.168.1.100",
script="service nginx restart",
username="admin", # Optional, defaults to root
confirmation="I understand this is dangerous" # Required safety confirmation
)
Installation
pip install ssh-mcp
Usage
# Start the MCP server
ssh-mcp
Requirements
- SSH key-based authentication must be set up for target machines
- Paramiko Python library (installed automatically)
- Python 3.12 or higher
Configuration
Coming soon
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ssh_mcp-0.1.2.tar.gz.
File metadata
- Download URL: ssh_mcp-0.1.2.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41bd220256db38c56e68c25b53ef83f5b468918a52229cc0031a2852f34cce63
|
|
| MD5 |
ea4370e1b3523c8f4b3fd7c676a95067
|
|
| BLAKE2b-256 |
41cee725eda5c8c6fc14d746ebaf071500a21c4776d4f550b33d52130668256a
|
File details
Details for the file ssh_mcp-0.1.2-py3-none-any.whl.
File metadata
- Download URL: ssh_mcp-0.1.2-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a8fd0b650f77b25f40c5cc0199c7570e07432a2871ee0e7d00c5061d25b52aaa
|
|
| MD5 |
caa695a9625648559760e58eee3fea30
|
|
| BLAKE2b-256 |
2b770777b09fae029350852e1d368150030a08a5de0601bc72d1f326ae6f2033
|