drio
Open app

SSH MCP Server

Source

Catalog onlyCatalog onlySTDIO

Overview

SSH MCP Server is a Model Context Protocol (MCP) server implementation that provides secure remote access and execution capabilities through the MCP protocol.

To use SSH MCP Server, clone the repository, install the dependencies, build the project, and start the server to enable secure remote access.

  • SSH server implementation using MCP protocol - SQLite database integration for data persistence - TypeScript implementation for type safety and better development experience
  1. Secure remote access to servers and applications.
  2. Executing commands securely over a network.
  3. Integrating with applications that require secure data handling.

Add to your AI client

Use these steps to connect SSH MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "ssh-mcp-server-kinothe-kafkaesque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ssh-mcp-server-kinothe-kafkaesque"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "ssh-mcp-server-kinothe-kafkaesque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ssh-mcp-server-kinothe-kafkaesque"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "ssh-mcp-server-kinothe-kafkaesque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ssh-mcp-server-kinothe-kafkaesque"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "ssh-mcp-server-kinothe-kafkaesque": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ssh-mcp-server-kinothe-kafkaesque"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "ssh-mcp-server-kinothe-kafkaesque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ssh-mcp-server-kinothe-kafkaesque"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "ssh-mcp-server-kinothe-kafkaesque": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-ssh-mcp-server-kinothe-kafkaesque"
      ]
    }
  }
}

FAQ

What are the prerequisites for using SSH MCP Server?

You need Node.js (v16 or higher), npm or yarn, and knowledge of TypeScript for development.

How do I install SSH MCP Server?

Clone the repository, install dependencies, build the project, and start the server.

Can I contribute to the project?

Yes! You can fork the repository, create a feature branch, and submit a Pull Request.