Komodo MCP Server
Provides tools to manage Docker containers, stacks, deployments, servers, builds, and more through the Komodo platform.
Provides tools to manage Podman containers and deployments through the Komodo platform.
Provides tools to manage Docker Swarm nodes, services, and stacks through the Komodo platform.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Komodo MCP ServerList all my containers"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ฆ Komodo MCP Server
Model Context Protocol Server for Komodo
Manage your Docker or Podman deployments through Komodo with AI assistants and automation tools.
Komodo MCP Server enables seamless interaction between AI assistants (like Claude, GitHub Copilot) and Komodo (Container Management Platform) for efficient container management, server orchestration, and deployment operations. The MCP-Server gives you the ability to control your Komodo-managed infrastructure by using natural language or automated workflows.
Features โข Quick Start โข Authentication โข Documentation
Features
๐ ๏ธ Complete Infrastructure Control
70 Tools, 16 Categories โ Full lifecycle management for containers, stacks, deployments, servers, builds, repos, procedures, actions, alerters, Docker Swarms (Komodo v2), variables, resource syncs and update history โ from listing and inspecting to deploying, building, scaling and destroying.
Remote Terminal Access โ Execute commands on servers, containers, deployments, and stack services with real-time output streaming, exit codes, and progress reporting.
Log Search & Analysis โ Pattern-based log search across containers with configurable tail limits and match counting.
๐ Deploy Anywhere
Multi-Transport โ Streamable HTTP (stateful), HTTPS with TLS, legacy SSE, and stdio. Same server, any client.
Multi-Platform Docker โ Production-ready images for
amd64,arm64,arm/v7, andarm/v6(Raspberry Pi). Non-root, multi-stage builds with tini init.Works with Any MCP Client โ Claude Desktop, VS Code / GitHub Copilot, or any MCP-compatible tool. Runs via Docker, npx, or native Node.js.
๐ Security & Authentication
Three Auth Methods โ API Key/Secret (recommended), username/password, or JWT token. All support Docker secrets via
*_FILEvariants.Runtime Configuration โ Set or change credentials dynamically via
komodo_configurewithout restarting the server.Hardened by Default โ Input validation (Zod), secret scrubbing in logs, rate limiting, DNS rebinding protection, and security headers via Helmet.
โก Reliability & Operations
Live Progress & Cancellation โ Long-running operations (deploy, start, stop) report real-time progress. Cancel any operation mid-flight via AbortSignal.
Auto-Reconnection โ Connection monitoring with automatic recovery and exponential backoff. Auth failures stop retries immediately.
Health & Readiness โ Kubernetes-ready
/healthand/readyendpoints.komodo_health_checkreports server version, connectivity, and auth status.
Built on mcp-server-framework โ a production-ready TypeScript MCP server framework with structured logging, OpenTelemetry, and session management.
Available Tools (70)
Category | Tools |
Configuration |
|
Containers |
|
Servers |
|
Stacks |
|
Deployments |
|
Builds |
|
Repos |
|
Procedures |
|
Actions |
|
Alerters |
|
Swarms |
|
Resource Syncs |
|
Variables |
|
Updates |
|
Terminal |
|
API Keys |
|
Tip: Every tool carries
_meta.category(one ofconfig,container,server,stack,deployment,build,repo,procedure,action,alerter,swarm,resource-sync,variable,update,terminal,user) and arequiredScopesarray (komodo:read/komodo:operate/komodo:admin), so MCP clients and gateways can filter or gate tools by category and three-tier RBAC.List/info/logs tools support cursor pagination via
{ cursor, page_size }(1โ100, default 50) and emit_meta.page.next_cursorwhen more items are available.inspect,info,logs, andsearch_logsresponses also include a session-scopedephemeral://โฆresource link so large payloads can be fetched out-of-band viaresources/read; passinline_full: trueto force inlining.
Quick Start
Docker Compose (Recommended for HTTP)
Deploy as a persistent HTTP server โ connect from any MCP client.
mkdir komodo-mcp && cd komodo-mcp
curl -O https://raw.githubusercontent.com/MP-Tool/komodo-mcp-server/main/docker/compose.yaml
curl -O https://raw.githubusercontent.com/MP-Tool/komodo-mcp-server/main/docker/docker.env
cp docker.env .env # Edit with your credentials
docker compose up -dClaude Desktop
Add to your claude_desktop_config.json (Settings โ Developer โ Edit Config):
"komodo-mcp-server": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "KOMODO_URL=https://komodo.example.com:9120",
"-e", "KOMODO_API_KEY=api-key",
"-e", "KOMODO_API_SECRET=api-secret",
"ghcr.io/mp-tool/komodo-mcp-server:latest"
]
}VS Code / GitHub Copilot
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"Komodo MCP Server": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "KOMODO_URL=https://komodo.example.com:9120",
"-e", "KOMODO_API_KEY=api-key",
"-e", "KOMODO_API_SECRET=api-secret",
"ghcr.io/mp-tool/komodo-mcp-server:latest"
]
}
}
}โ Full VS Code Guide ยท Node.js / npx (no Docker) ยท All Integrations
Use
Once connected, ask Claude, Copilot, or any MCP-compatible assistant:
"List all my Komodo servers"
"Show containers on production-server"
"Start the nginx container"
"Deploy my-app to staging"
"Get stats for dev-server"Testing with MCP Inspector
npx @modelcontextprotocol/inspector --url http://localhost:8000/mcpUse /mcp for Streamable HTTP or /sse for legacy SSE transport (if enabled). Adjust host and port to match your setup.
Authentication
Three methods are supported โ use whichever fits your setup:
Method | Environment Variables | Best For |
API Key (recommended) |
| Service accounts, automation |
Username / Password |
| Interactive users |
JWT Token |
| Browser-based SSO (OIDC, GitHub, Google OAuth) |
KOMODO_URL is always required. All credentials also support Docker secrets via *_FILE variants (e.g. KOMODO_API_KEY_FILE).
For the full configuration reference (env vars, config files, Docker secrets), see the Configuration Guide.
Disclaimer
AI tools (GitHub Copilot, Claude) are used as part of the development workflow โ for code generation, architecture exploration, and documentation drafting. Every line of code and documentation is manually reviewed to ensure quality, correctness, and compliance with established engineering standards.
This software is provided under the GPL-3.0 License. If you find bugs or have ideas, issues and contributions are always welcome.
Contributing
Contributions are welcome! See our Contributing Guide for details.
๐ Report bugs
๐ก Request features
๐ง Submit PRs
Development
# Clone and install
git clone https://github.com/MP-Tool/komodo-mcp-server.git
cd komodo-mcp-server
npm install
# Build and run
npm run build
npm startDocumentation
Guide | Description |
All environment variables, config file formats, priority chain, Docker secrets | |
Docker Compose setup, health checks, production deployment | |
Claude Desktop, VS Code, Node.js/npx setup guides | |
Development setup, coding standards, PR guidelines | |
Vulnerability reporting, security best practices | |
Version history and release notes |
License
GPL-3.0 License - see LICENSE for details.
Requirements
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)
Security
Report security vulnerabilities via GitHub's Private Vulnerability Reporting (see SECURITY.md).
Best practices:
Never commit credentials
Use environment variables
Keep dependencies updated
Run as non-root user (default in Docker)
Links
Komodo โ Container management platform
Komodo Docs โ Official documentation
MCP Specification โ Model Context Protocol
MCP Registry โ MCP server registry
Built with โค๏ธ for the Komodo community ๐ฆ
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MP-Tool/komodo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server