Skip to content
VS Code

Komodo MCP Server for VS Code

io.github.mp-tool/komodo-mcp-server

MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI

client:VS Code transport:stdio runtime:npm

Install Komodo MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "komodo-url",
      "description": "KOMODO_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "komodo-api-key",
      "description": "KOMODO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "komodo-api-secret",
      "description": "KOMODO_API_SECRET",
      "password": true
    },
    {
      "type": "promptString",
      "id": "komodo-username",
      "description": "KOMODO_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "komodo-password",
      "description": "KOMODO_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "komodo-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "komodo-mcp-server"
      ],
      "env": {
        "KOMODO_URL": "${input:komodo-url}",
        "KOMODO_API_KEY": "${input:komodo-api-key}",
        "KOMODO_API_SECRET": "${input:komodo-api-secret}",
        "KOMODO_USERNAME": "${input:komodo-username}",
        "KOMODO_PASSWORD": "${input:komodo-password}"
      }
    }
  }
}

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

Komodo MCP Server in other clients