RemoteShell MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RemoteShell MCPlist my saved servers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ RemoteShell MCP
A Model Context Protocol (MCP) server that enables LLMs to securely manage and execute commands on remote SSH servers.
โจ Features
๐ Secure credential management - Save SSH server profiles once, no need to retype credentials
๐ป Remote command execution - Execute non-interactive shell commands remotely
๐ File operations - Upload/download files via SFTP
๐ค LLM-powered - Built with FastMCP and Paramiko
Related MCP server: SSH MCP Server
๐ Installation
RemoteShell is a stdio MCP server distributed on PyPI. Run it directly with uvx โ no install step required, just make sure uv is installed:
curl -LsSf https://astral.sh/uv/install.sh | shThen register the server with your AI coding agent. Click yours to expand ๐
claude mcp add remoteshell --scope user -- uvx remoteshell-mcpcodex mcp add remoteshell -- uvx remoteshell-mcpcursor mcp add remoteshell -- uvx remoteshell-mcpEdit ~/.gemini/config/mcp_config.json (global) or .agents/mcp_config.json (project):
{
"mcpServers": {
"remoteshell": {
"command": "uvx",
"args": ["remoteshell-mcp"]
}
}
}Or open the MCP Servers view in the Antigravity TUI and run the /mcp command.
opencode mcp addChoose local, then enter uvx remoteshell-mcp.
Edit ~/.hermes/config.yaml:
mcp_servers:
remoteshell:
command: "uvx"
args: ["remoteshell-mcp"]Run /reload-mcp in the Hermes TUI to pick up the new server.
Edit ~/.openclaw/openclaw.json:
{
"mcp": {
"servers": {
"remoteshell": {
"command": "uvx",
"args": ["remoteshell-mcp"]
}
}
}
}Or run openclaw configure to add it via the interactive wizard.
Add this to your MCP client configuration:
{
"mcpServers": {
"remoteshell": {
"command": "uvx",
"args": ["remoteshell-mcp"]
}
}
}๐ Usage
Getting started is easy! You can either:
๐ค Let the LLM configure for you - Simply tell the LLM your host, username, password, etc., and ask it to set up the server configuration
โ๏ธ Manual configuration - Directly edit the configuration file at
~/.config/remoteshell/hosts.json
๐พ Configuration & Storage
RemoteShell securely stores your server configurations in:
~/.config/remoteshell/hosts.json๐ง Configuration Management
LLM-managed: The LLM automatically manages this file using
save_serverandremove_servertoolsManual editing: You can also directly edit the JSON file for advanced configurations
๐ Example Configuration
{
"version": 1,
"servers": {
"production-server": {
"host": "1.2.3.4",
"user": "root",
"port": 22,
"auth_type": "password",
"password": "your_secure_password",
"last_connected": null
},
"staging-server": {
"host": "staging.example.com",
"user": "ubuntu",
"port": 22,
"auth_type": "private_key",
"private_key": "~/.ssh/id_rsa",
"last_connected": "2025-01-01T00:00:00+00:00"
}
}
}๐ Security Note
On POSIX systems, protect your configuration file:
chmod 600 ~/.config/remoteshell/hosts.json๐ ๏ธ Available Tools
RemoteShell provides the following MCP tools for remote server management:
๐ list_servers()
Purpose: Display all saved server profiles with their connection status and last activity.
When to use:
User asks to "connect to server" or "show machines"
No specific
connection_idis providedNeed to see available servers
Example: "Show me which servers I have configured" โ Returns list of all saved servers with online status
๐พ save_server(connection_id, host, user, auth_type, credential, port)
Purpose: Create or update a server profile with authentication credentials.
Parameters:
connection_id: Unique identifier for the server (e.g., "production", "staging")host: Server hostname or IP addressuser: SSH usernameauth_type:"password"or"private_key"credential:For
password: Plain text password stringFor
private_key: File path (e.g.,~/.ssh/id_rsa) or PEM key content
port: SSH port (optional; defaults to 22 and keeps the existing saved port if omitted)
When to use:
Adding a new server configuration
Updating credentials after authentication failure
Changing server connection details
๐๏ธ remove_server(connection_id)
Purpose: Permanently delete a server profile from storage.
When to use:
User explicitly requests to remove or forget a server
Server is no longer accessible or needed
โ ๏ธ Warning: This action cannot be undone
โก execute_command(connection_id, command)
Purpose: Execute non-interactive shell commands remotely and return results.
Returns: stdout, stderr, and exit_code
When to use:
Running system commands, scripts, or utilities
Checking server status, disk usage, process lists
File operations, package management, etc.
When NOT to use:
Interactive programs (vim, htop, top)
Commands requiring manual input (
[Y/n]prompts) - unless using flags like-y
Example: execute_command(connection_id="production", command="df -h")
๐ค upload_file(connection_id, local_path, remote_path)
Purpose: Upload files from your local machine to a remote server via SFTP.
Parameters:
local_path: Path to the file on your local machineremote_path: Destination path on the remote server
Notes:
If
remote_pathis a directory, the original filename is preservedIf
local_pathis omitted, server selects a default and returns it in response
๐ฅ download_file(connection_id, remote_path, local_path)
Purpose: Download files from a remote server to your local machine via SFTP.
Parameters:
remote_path: Path to the file on the remote serverlocal_path: Destination path on your local machine
Notes:
If
local_pathis omitted, defaults to:~/.config/remoteshell/downloads/<connection_id>/<basename>
๐งช Development
Local Development Setup
For local development, use this MCP configuration:
{
"mcpServers": {
"remoteshell": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/remoteShell-mcp", "run", "remoteshell-mcp"]
}
}
}Running Tests
uv run pytestMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityDmaintenanceA local Model Context Protocol server that allows LLMs to securely execute shell commands on remote Linux and Windows systems via SSH connections.Last updated682
- Alicense-qualityDmaintenanceA Model Context Protocol server that allows LLMs to securely execute shell commands on remote Linux and Windows systems via SSH. It supports password and key-based authentication, command timeouts, and sudo elevation for administrative tasks.Last updated1,280578MIT
- AlicenseAqualityCmaintenanceEnables AI assistants to manage remote servers via SSH with agentless command execution, file operations, and service management.Last updated9MIT
- Alicense-qualityAmaintenanceA local MCP server that enables LLMs to execute shell commands on remote hosts over SSH with multiple authentication methods.Last updated353MIT
Related MCP Connectors
Operate your Linux servers from your LLM. Every action runs through an auditable allowlist.
Let AI operate servers without SSH. Choose actions, approve risky changes, and audit every step.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chouzz/remoteShell-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server