Komodo MCP Server

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

Local serverstdioTypeScript

What is the Komodo MCP server?

MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI. Exposed over MCP by the komodo mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

Manage your Docker or Podman deployments through Komodo with AI assistants and automation tools.

Adding it to your client

The server ships on npm as @modelcontextprotocol/inspector, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Its toolset

Everything the assistant can do here goes through one of these:

  • Category — Tools
  • Configuration — komodo_configure, komodo_health_check
  • Containers — komodo_container_list, komodo_container_inspect, komodo_container_logs, komodo_container_search_logs, komodo_container_action
  • Servers — komodo_server_list, komodo_server_info, komodo_server_stats, komodo_server_apply (create/update), komodo_server_delete, komodo_server_action
  • Stacks — komodo_stack_list, komodo_stack_info, komodo_stack_apply (create/update), komodo_stack_delete, komodo_stack_action
  • Deployments — komodo_deployment_list, komodo_deployment_info, komodo_deployment_apply (create/update), komodo_deployment_delete, komodo_deployment_action
  • Builds — komodo_build_list, komodo_build_info, komodo_build_action (run/cancel), komodo_build_logs, komodo_build_apply (create/update), komodo_build_delete
  • Repos — komodo_repo_list, komodo_repo_info, komodo_repo_action (clone/pull/build/cancel_build), komodo_repo_apply (create/update), komodo_repo_delete
  • Procedures — komodo_procedure_list, komodo_procedure_info, komodo_procedure_action (run), komodo_procedure_apply (create/update), komodo_procedure_delete
  • Actions — komodo_action_list, komodo_action_info, komodo_action_action (run/cancel), komodo_action_apply (create/update), komodo_action_delete
  • Alerters — komodo_alerter_list, komodo_alerter_info, komodo_alerter_apply (create/update), komodo_alerter_delete
  • Swarms — komodo_swarm_list, komodo_swarm_info, komodo_swarm_apply (create/update), komodo_swarm_delete, komodo_swarm_nodes_list, komodo_swarm_services_list

Configuration

You will need 4 environment variables: KOMODO_URL, KOMODO_API_KEY, KOMODO_API_SECRET, KOMODO_JWT_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Komodo v2.0.0 or later - Docker (for containerized deployment) or Node.js 22+ (for native installation) - Valid Komodo credentials (API Key/Secret, Username/Password, or JWT Token)

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Komodo.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the komodo mcp server does with a few real requests.

When to reach for it

This sits in the cloud and infrastructure group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Komodo's toolset — Category, Configuration, Containers and 11 more — is a fair guide to whether it matches your workflow. It is maintained by MP-Tool; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
CategoryTools
Configurationkomodo_configure, komodo_health_check
Containerskomodo_container_list, komodo_container_inspect, komodo_container_logs, komodo_container_search_logs, komodo_container_action *(start/stop/restart/pause/unpause)*
Serverskomodo_server_list, komodo_server_info, komodo_server_stats, komodo_server_apply *(create/update)*, komodo_server_delete, komodo_server_action *(start_all/restart_all/pause_all/unpause_all/stop_all\_containers, prune\_\*
Stackskomodo_stack_list, komodo_stack_info, komodo_stack_apply *(create/update)*, komodo_stack_delete, komodo_stack_action *(deploy/pull/start/restart/pause/unpause/stop/destroy)*
Deploymentskomodo_deployment_list, komodo_deployment_info, komodo_deployment_apply *(create/update)*, komodo_deployment_delete, komodo_deployment_action *(deploy/pull/start/restart/pause/unpause/stop/destroy)*
Buildskomodo_build_list, komodo_build_info, komodo_build_action *(run/cancel)*, komodo_build_logs, komodo_build_apply *(create/update)*, komodo_build_delete
Reposkomodo_repo_list, komodo_repo_info, komodo_repo_action *(clone/pull/build/cancel_build)*, komodo_repo_apply *(create/update)*, komodo_repo_delete
Procedureskomodo_procedure_list, komodo_procedure_info, komodo_procedure_action *(run)*, komodo_procedure_apply *(create/update)*, komodo_procedure_delete
Actionskomodo_action_list, komodo_action_info, komodo_action_action *(run/cancel)*, komodo_action_apply *(create/update)*, komodo_action_delete
Alerterskomodo_alerter_list, komodo_alerter_info, komodo_alerter_apply *(create/update)*, komodo_alerter_delete
Swarmskomodo_swarm_list, komodo_swarm_info, komodo_swarm_apply *(create/update)*, komodo_swarm_delete, komodo_swarm_nodes_list, komodo_swarm_services_list, komodo_swarm_action *(update_node/remove_nodes/remove_services/remove_
Variableskomodo_variable_list, komodo_variable_info, komodo_variable_apply *(create/update — value/description/is_secret)*, komodo_variable_delete
Updateskomodo_update_list *(filterable, paginated)*, komodo_update_info

How to install the Komodo MCP server

{
  "mcpServers": {
    "komodo": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/inspector"],
      "env": {
        "KOMODO_URL": "your-value",
        "KOMODO_API_KEY": "your-value",
        "KOMODO_API_SECRET": "your-value",
        "KOMODO_JWT_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Komodo v2.0.0 or later - Docker (for containerized deployment) or Node.js 22+ (for native installation) - Valid Komodo credentials (API Key/Secret, Username/Password, or JWT Token)
VariableDescriptionRequired
KOMODO_URLEndpoint or connection string the server talks to.Yes
KOMODO_API_KEYCredential the server authenticates with.Yes
KOMODO_API_SECRETCredential the server authenticates with.Yes
KOMODO_JWT_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Komodo to Category.
  • Use Komodo to Configuration.
  • Use Komodo to Containers.

Frequently asked questions

It connects Komodo to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Category, Configuration, Containers, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Komodo directly.