HomeCloud & Monitoring › Komodo MCP Server

Komodo MCP Server

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

TypeScript
★ 36 stars Last pushed 2026-09-21 License: GPL-3.0

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 1.5.0)

npx -y [email protected]

Or add to your MCP client config:

{
  "mcpServers": {
    "komodo-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "[email protected]"
      ],
      "env": {
        "KOMODO_URL": "<YOUR_VALUE>",
        "KOMODO_API_KEY": "<YOUR_VALUE>",
        "KOMODO_API_SECRET": "<YOUR_VALUE>",
        "KOMODO_USERNAME": "<YOUR_VALUE>",
        "KOMODO_PASSWORD": "<YOUR_VALUE>"
      }
    }
  }
}
  • KOMODO_URL required — Komodo Core API URL
  • KOMODO_API_KEY secret — API key for key-based authentication (recommended)
  • KOMODO_API_SECRET secret — API secret for key-based authentication (recommended)
  • KOMODO_USERNAME secret — Username for login authentication (alternative to API key)
  • KOMODO_PASSWORD secret — Password for login authentication (alternative to API key)

Package (oci)

docker run -i --rm ghcr.io/mp-tool/komodo-mcp-server:1.5.0

Or add to your MCP client config:

{
  "mcpServers": {
    "komodo-mcp-server": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/mp-tool/komodo-mcp-server:1.5.0"
      ],
      "env": {
        "KOMODO_URL": "<YOUR_VALUE>",
        "KOMODO_API_KEY": "<YOUR_VALUE>",
        "KOMODO_API_SECRET": "<YOUR_VALUE>",
        "KOMODO_USERNAME": "<YOUR_VALUE>",
        "KOMODO_PASSWORD": "<YOUR_VALUE>"
      }
    }
  }
}
  • KOMODO_URL required — Komodo Core API URL
  • KOMODO_API_KEY secret — API key for key-based authentication (recommended)
  • KOMODO_API_SECRET secret — API secret for key-based authentication (recommended)
  • KOMODO_USERNAME secret — Username for login authentication (alternative to API key)
  • KOMODO_PASSWORD secret — Password for login authentication (alternative to API key)

Related servers

Data from the Official MCP Registry