Skip to content
VS Code

SSH LICCO MCP Server for VS Code

io.github.echoqili/ssh-licco

SSH Model Context Protocol Server - Enable SSH functionality for AI models

client:VS Code transport:stdio runtime:pypi

Install SSH LICCO MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ssh-host",
      "description": "SSH_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ssh-user",
      "description": "SSH_USER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ssh-password",
      "description": "SSH_PASSWORD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ssh-port",
      "description": "SSH_PORT",
      "password": true
    }
  ],
  "servers": {
    "ssh-licco": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ssh-licco"
      ],
      "env": {
        "SSH_HOST": "${input:ssh-host}",
        "SSH_USER": "${input:ssh-user}",
        "SSH_PASSWORD": "${input:ssh-password}",
        "SSH_PORT": "${input:ssh-port}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

SSH LICCO MCP Server in other clients