AgentHubAgentHub

Komodo MCP Server

MCP ServerMCP Registry官方收录

io.github.MP-Tool/komodo-mcp-server · v1.4.0

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

概览

Komodo MCP Server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "komodo-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "komodo-mcp-server"
      ],
      "env": {
        "KOMODO_URL": "<KOMODO_URL>"
      }
    }
  }
}

环境变量

KOMODO_URL必填

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)

KOMODO_URL必填

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)

相关资源

统一 Manifest

{
  "id": "io.github.MP-Tool/komodo-mcp-server",
  "type": "mcp-server",
  "version": "1.4.0",
  "displayName": "Komodo MCP Server",
  "description": "MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI",
  "repository": {
    "url": "https://github.com/MP-Tool/komodo-mcp-server",
    "source": "github"
  },
  "homepage": "https://github.com/MP-Tool/komodo-mcp-server",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "komodo-mcp-server",
        "version": "1.4.0",
        "runtimeHint": "npx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "KOMODO_URL",
            "description": "Komodo Core API URL",
            "isRequired": true
          },
          {
            "name": "KOMODO_API_KEY",
            "description": "API key for key-based authentication (recommended)",
            "isSecret": true
          },
          {
            "name": "KOMODO_API_SECRET",
            "description": "API secret for key-based authentication (recommended)",
            "isSecret": true
          },
          {
            "name": "KOMODO_USERNAME",
            "description": "Username for login authentication (alternative to API key)",
            "isSecret": true
          },
          {
            "name": "KOMODO_PASSWORD",
            "description": "Password for login authentication (alternative to API key)",
            "isSecret": true
          }
        ]
      },
      {
        "registryType": "oci",
        "identifier": "ghcr.io/mp-tool/komodo-mcp-server:1.4.0",
        "runtimeHint": "docker",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "KOMODO_URL",
            "description": "Komodo Core API URL",
            "isRequired": true
          },
          {
            "name": "KOMODO_API_KEY",
            "description": "API key for key-based authentication (recommended)",
            "isSecret": true
          },
          {
            "name": "KOMODO_API_SECRET",
            "description": "API secret for key-based authentication (recommended)",
            "isSecret": true
          },
          {
            "name": "KOMODO_USERNAME",
            "description": "Username for login authentication (alternative to API key)",
            "isSecret": true
          },
          {
            "name": "KOMODO_PASSWORD",
            "description": "Password for login authentication (alternative to API key)",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.MP-Tool/komodo-mcp-server",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.MP-Tool%2Fkomodo-mcp-server/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Komodo MCP Server — MCP Server 安装与配置 · AgentHub