Skip to main content

Execute commands remotely through an ssh connection

Project description

mcp-server-ssh-exec

** All of the code in this project was created by a generative AI. **

An MCP server for SSH connections and file operations.

Components

Tools

The server implements several SSH-related tools:

  • connect: Connect to an SSH server

    • Optional parameters to override environment variables: host, port, username, password, key_path, key_passphrase
    • Returns connection status
  • disconnect: Disconnect from the SSH server

    • No parameters required
    • Returns disconnection status
  • execute: Execute a command on the SSH server

    • Required parameter: command (string)
    • Optional parameter: timeout (integer, seconds, default: 60)
    • Returns command output (stdout and stderr) and exit status
  • upload: Upload a file to the SSH server

    • Required parameters: local_path, remote_path
    • Returns upload status
  • download: Download a file from the SSH server

    • Required parameters: remote_path, local_path
    • Returns download status
  • list_files: List files in a directory on the SSH server

    • Required parameter: path
    • Returns list of files with type and size information

Configuration

The SSH connection parameters can be configured using environment variables in the MCP settings:

  • SSH_HOST: SSH server hostname or IP address
  • SSH_PORT: SSH server port (default: 22)
  • SSH_USERNAME: SSH username
  • SSH_PASSWORD: SSH password (if using password authentication)
  • SSH_KEY_PATH: Path to SSH private key file (if using key authentication)
  • SSH_KEY_PASSPHRASE: Passphrase for SSH private key (if required)

You must provide either SSH_PASSWORD or SSH_KEY_PATH for authentication.

Example Configuration

An example MCP configuration file is provided in mcp-config-example.json. You can use this as a template for configuring the SSH MCP server:

{
  "mcpServers": {
    "mcp-server-ssh-exec": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/mcp-server-ssh-exec",
        "run",
        "mcp-server-ssh-exec"
      ],
      "env": {
        "SSH_HOST": "example.com",
        "SSH_PORT": "22",
        "SSH_USERNAME": "username",
        "SSH_PASSWORD": "password",
        "SSH_KEY_PATH": "/path/to/private_key",
        "SSH_KEY_PASSPHRASE": "key_passphrase"
      }
    }
  }
}

Note: You typically only need to provide either SSH_PASSWORD or SSH_KEY_PATH (with optional SSH_KEY_PASSPHRASE), not both.

Examples

An example Python script is provided in the examples directory to demonstrate how to use the SSH MCP server:

  • ssh_example.py: Shows how to connect to an SSH server, execute commands, upload/download files, list directory contents, and disconnect.

To run the example:

python examples/ssh_example.py

This example assumes the SSH MCP server is already configured and running.

Using with Cline

To help Cline understand how to use the SSH MCP server without reading the README.md file, the following files are provided:

  • cline_ssh_usage_example.md: A quick reference guide for using the SSH MCP server with Cline, including example commands and a complete workflow.
  • create_test_file.py: A script to create a test file for upload/download testing.
  • test_ssh_mcp.sh: A shell script that creates a test file and provides step-by-step instructions for testing the SSH MCP server with Cline.
  • test_ssh_mcp.py: A Python script that demonstrates how to use the SSH MCP server directly from Python, without using Cline.
  • ssh_mcp_guide.html: An HTML guide with examples and a complete workflow for using the SSH MCP server with Cline.

To test the SSH MCP server with Cline:

./test_ssh_mcp.sh

This will create a test file and display instructions for testing the SSH MCP server with Cline.

To test the SSH MCP server directly from Python:

./test_ssh_mcp.py

This will perform a complete test of the SSH MCP server, including connecting, executing commands, uploading/downloading files, and disconnecting.

Quickstart

Install

All-in-One Setup

For a complete setup and test of the SSH MCP server, you can use the all-in-one setup script:

./setup_and_test.sh

This script will:

  1. Install the required dependencies
  2. Install the SSH MCP server in Cline or Claude Desktop (or both)
  3. Test the SSH MCP server

Manual Setup

Dependencies

Before using the SSH MCP server, you need to install the required dependencies:

./install_dependencies.sh

This script will install the paramiko Python package, which is required for SSH connections.

Automatic Installation

Two Python scripts are provided to automatically install the SSH MCP server:

  1. For Cline:
./install_ssh_mcp.py
  1. For Claude Desktop:
./install_ssh_mcp_claude.py

These scripts will:

  1. Detect the location of the configuration file
  2. Prompt you for SSH connection parameters
  3. Update the configuration file with the SSH MCP server configuration

Manual Installation

Claude Desktop

An example Claude Desktop configuration file is provided in claude-desktop-config-example.json. This shows how to configure the SSH MCP server in Claude Desktop.

To install the SSH MCP server in Claude Desktop:

  1. Locate your Claude Desktop configuration file:

    • On macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
    • On Windows: %APPDATA%/Claude/claude_desktop_config.json
  2. Add the SSH MCP server configuration to the mcpServers object in the configuration file:

{
  "mcpServers": {
    "mcp-server-ssh-exec": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/mcp-server-ssh-exec",
        "run",
        "mcp-server-ssh-exec"
      ],
      "env": {
        "SSH_HOST": "example.com",
        "SSH_PORT": "22",
        "SSH_USERNAME": "username",
        "SSH_PASSWORD": "password",
        "SSH_KEY_PATH": "/path/to/private_key",
        "SSH_KEY_PASSPHRASE": "key_passphrase"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}
  1. Restart Claude Desktop to apply the changes.

Note: Make sure to replace the placeholder values with your actual SSH connection details.

Development

Building and Publishing

To prepare the package for distribution:

  1. Sync dependencies and update lockfile:
uv sync
  1. Build package distributions:
uv build

This will create source and wheel distributions in the dist/ directory.

  1. Publish to PyPI:
uv publish

Note: You'll need to set PyPI credentials via environment variables or command flags:

  • Token: --token or UV_PUBLISH_TOKEN
  • Or username/password: --username/UV_PUBLISH_USERNAME and --password/UV_PUBLISH_PASSWORD

Testing

A test script is provided in the tests directory to verify that the SSH MCP server is working correctly:

python tests/test_ssh_connect.py

This test script uses unittest and mocking to test the basic functionality of the SSH MCP server without actually connecting to an SSH server.

Debugging

Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.

You can launch the MCP Inspector via npm with this command:

npx @modelcontextprotocol/inspector uv --directory /path/to/mcp-server-ssh-exec run mcp-server-ssh-exec

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.

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

mcp_server_ssh_exec-0.1.0.tar.gz (27.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_server_ssh_exec-0.1.0-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file mcp_server_ssh_exec-0.1.0.tar.gz.

File metadata

  • Download URL: mcp_server_ssh_exec-0.1.0.tar.gz
  • Upload date:
  • Size: 27.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for mcp_server_ssh_exec-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f3982623b3dfb48baab8f64924b19386da8117c7a883c4847b7f661e7fc5ab90
MD5 dcf0322ac1d832dc13d47fb2688283d3
BLAKE2b-256 aa24611be1eaf8b9082f8764de1e5e9e21a2ebf2686163ab0b8378863ca47314

See more details on using hashes here.

File details

Details for the file mcp_server_ssh_exec-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_server_ssh_exec-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d2c0e2b34a52aead289a423d0e254fe060ed1d49bedb1aa3ff0e8619eb7c7825
MD5 bc359c30498f1905d6fde4280861191b
BLAKE2b-256 3d395e3c9a7e36d1da8a59c79cec8e5f00a622f4fac315c500e4e734c5259a7b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page