CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Komodo MCP Server

samik081/mcp-komodo
5authSTDIOregistry active
Summary

Connects Claude to Komodo's DevOps platform API with 53 tools spanning server management, stack deployments, builds, and container operations. Ships with three access tiers (read-only, read-execute, full) so you can let your AI explore safely or hand it deployment permissions. Built on the official komodo_client SDK and validates credentials on startup. You can run it via npx for quick tests or deploy as a Docker container with HTTP transport for remote access. Supports granular filtering by category and individual tool blacklisting. Good fit if you're already running Komodo infrastructure and want natural language control over deployments, server stats, Docker resources, and CI/CD workflows without context switching.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →

npm version Docker image License: MIT Node.js Version

MCP Komodo

MCP server for the Komodo DevOps platform. Manage servers, stacks, deployments, builds, and more through natural language in Cursor, Claude Code, and Claude Desktop.

Features

  • 53 tools across 13 categories covering the complete Komodo DevOps API
  • Three access tiers (read-only, read-execute, full) for granular control
  • Category filtering via KOMODO_CATEGORIES to expose only the tools you need
  • Zero HTTP dependencies -- uses the official komodo_client SDK
  • Docker images for linux/amd64 and linux/arm64 on GHCR
  • Remote MCP via HTTP transport (MCP_TRANSPORT=http) using the Streamable HTTP protocol
  • TypeScript/ESM with full type safety

API Compatibility

Built for Komodo 1.19.5.

Quick Start

Run the server directly with npx:

KOMODO_URL="https://komodo.example.com" \
KOMODO_API_KEY="your-api-key" \
KOMODO_API_SECRET="your-api-secret" \
npx -y @samik081/mcp-komodo

The server validates your Komodo connection on startup and fails immediately with a clear error if credentials are missing or invalid.

Docker

Run with Docker (stdio transport, same as npx):

docker run --rm -i \
  -e KOMODO_URL=https://komodo.example.com \
  -e KOMODO_API_KEY=your-api-key \
  -e KOMODO_API_SECRET=your-api-secret \
  ghcr.io/samik081/mcp-komodo

To run as a remote MCP server with HTTP transport:

docker run -d -p 3000:3000 \
  -e MCP_TRANSPORT=http \
  -e KOMODO_URL=https://komodo.example.com \
  -e KOMODO_API_KEY=your-api-key \
  -e KOMODO_API_SECRET=your-api-secret \
  ghcr.io/samik081/mcp-komodo

The MCP endpoint is available at http://localhost:3000 and a health check at http://localhost:3000/health.

Configuration

Claude Code CLI (recommended):

# Using npx
claude mcp add --transport stdio komodo \
  --env KOMODO_URL=https://komodo.example.com \
  --env KOMODO_API_KEY=your-api-key \
  --env KOMODO_API_SECRET=your-api-secret \
  -- npx -y @samik081/mcp-komodo

# Using Docker
claude mcp add --transport stdio komodo \
  --env KOMODO_URL=https://komodo.example.com \
  --env KOMODO_API_KEY=your-api-key \
  --env KOMODO_API_SECRET=your-api-secret \
  -- docker run --rm -i ghcr.io/samik081/mcp-komodo

# Using remote HTTP (connect to a running Docker container or HTTP server)
claude mcp add --transport http komodo http://localhost:3000

JSON config (works with Claude Code .mcp.json, Claude Desktop claude_desktop_config.json, Cursor .cursor/mcp.json):

{
  "mcpServers": {
    "komodo": {
      "command": "npx",
      "args": ["-y", "@samik081/mcp-komodo"],
      "env": {
        "KOMODO_URL": "https://komodo.example.com",
        "KOMODO_API_KEY": "your-api-key",
        "KOMODO_API_SECRET": "your-api-secret"
      }
    }
  }
}

Docker (stdio):

{
  "mcpServers": {
    "komodo": {
      "command": "docker",
      "args": ["run", "--rm", "-i",
        "-e", "KOMODO_URL=https://komodo.example.com",
        "-e", "KOMODO_API_KEY=your-api-key",
        "-e", "KOMODO_API_SECRET=your-api-secret",
        "ghcr.io/samik081/mcp-komodo"
      ]
    }
  }
}

Remote MCP (connect to a running Docker container or HTTP server):

{
  "mcpServers": {
    "komodo": {
      "type": "streamable-http",
      "url": "http://localhost:3000"
    }
  }
}

Access Tiers

Control which tools are available using the KOMODO_ACCESS_TIER environment variable:

TierToolsDescription
full (default)53Read, execute, and write -- full control
read-execute52Read and execute -- no resource creation/deletion via write tool
read-only36Read only -- safe for exploration, no state changes

Tier details:

  • full: All 53 tools. Includes komodo_write_resource for creating, updating, and deleting Komodo resources.
  • read-execute: 52 tools. All read tools plus execute tools (deploy, pull, lifecycle, run, etc.). The komodo_write_resource tool is hidden.
  • read-only: 36 tools. List, get, logs, inspect, stats, summaries, and operation history only. All execute and write tools are hidden.

Tools that are not available in your tier are not registered with the MCP server. They will not appear in your AI tool's tool list, keeping the context clean.

Set KOMODO_ACCESS_TIER to read-only, read-execute, or full (default: full).

Environment Variables

VariableRequiredDefaultDescription
KOMODO_URLYes--URL of your Komodo Core instance
KOMODO_API_KEYYes--API key for authentication
KOMODO_API_SECRETYes--API secret for authentication
KOMODO_ACCESS_TIERNofullAccess tier: read-only, read-execute, or full
KOMODO_CATEGORIESNo(all)Comma-separated category allowlist (e.g., servers,stacks,builds)
KOMODO_TOOL_BLACKLISTNo(none)Comma-separated list of tool names to exclude (e.g., komodo_destroy_stack)
KOMODO_TOOL_WHITELISTNo(none)Comma-separated list of tool names to force-include, bypassing access tier and category filters
DEBUGNofalseEnable debug logging to stderr
MCP_TRANSPORTNostdioTransport mode: stdio (default) or http
MCP_PORTNo3000HTTP server port (only used when MCP_TRANSPORT=http)
MCP_HOSTNo0.0.0.0HTTP server bind address (only used when MCP_TRANSPORT=http)
MCP_EXCLUDE_TOOL_TITLESNofalseSet true to omit tool titles from registration (saves tokens)

Generate API keys in the Komodo UI under Settings > API Keys.

Available Categories

servers, stacks, deployments, containers, builds, repos, procedures, actions, builders, alerters, resource-syncs, updates, write

Tools

mcp-komodo provides 53 tools organized by category. Each tool's Access column shows the minimum tier required: read-only (available in all tiers), read-execute (requires read-execute or full), or full (requires full tier only). The Hints column shows tool behavior: read-only (no state changes), destructive (modifies existing state), idempotent (same result if called twice).

Servers (10 tools)
ToolDescriptionAccessHints
komodo_list_serversList all servers with status and regionread-onlyread-only, idempotent
komodo_get_serverGet server configuration, status, and action stateread-onlyread-only, idempotent
komodo_get_server_statsGet CPU, memory, disk usage, and load averagesread-onlyread-only, idempotent
komodo_get_server_infoGet OS details, hardware info, and running processesread-onlyread-only, idempotent
komodo_inspect_docker_containerInspect a Docker container (equivalent to docker inspect)read-onlyread-only, idempotent
komodo_inspect_docker_imageInspect a Docker image (equivalent to docker image inspect)read-onlyread-only, idempotent
komodo_inspect_docker_networkInspect a Docker network (equivalent to docker network inspect)read-onlyread-only, idempotent
komodo_inspect_docker_volumeInspect a Docker volume (equivalent to docker volume inspect)read-onlyread-only, idempotent
komodo_prune_dockerPrune unused Docker resources on a serverread-executedestructive, idempotent
komodo_delete_docker_resourceDelete a specific Docker image, volume, or networkread-executedestructive
Stacks (10 tools)
ToolDescriptionAccessHints
komodo_list_stacksList all stacks with state, server, and service countread-onlyread-only, idempotent
komodo_get_stackGet stack configuration, services, and action stateread-onlyread-only, idempotent
komodo_list_stack_servicesList services in a stack with image, container state, and update availabilityread-onlyread-only, idempotent
komodo_get_stacks_summaryGet aggregate counts of all stacks by stateread-onlyread-only, idempotent
komodo_get_stack_logGet logs from stack services, with optional searchread-onlyread-only, idempotent
komodo_inspect_stack_containerInspect a container for a specific service in a stackread-onlyread-only, idempotent
komodo_deploy_stackDeploy or redeploy a stackread-executedestructive
komodo_pull_stackPull latest images without redeploying (docker compose pull)read-executeidempotent
komodo_stack_lifecycleStart, stop, restart, pause, or unpause a stackread-executedestructive
komodo_destroy_stackPermanently destroy a stackread-executedestructive
Deployments (9 tools)
ToolDescriptionAccessHints
komodo_list_deploymentsList all deployments with state, image, and serverread-onlyread-only, idempotent
komodo_get_deploymentGet deployment configuration, container status, and action stateread-onlyread-only, idempotent
komodo_get_deployments_summaryGet aggregate counts of all deployments by stateread-onlyread-only, idempotent
komodo_get_deployment_logGet container logs, with optional searchread-onlyread-only, idempotent
komodo_inspect_deployment_containerInspect the container for a deployment (equivalent to docker inspect)read-onlyread-only, idempotent
komodo_deploy_deploymentDeploy with latest image and configurationread-executedestructive
komodo_pull_deploymentPull latest image without redeploying (docker pull)read-executeidempotent
komodo_deployment_lifecycleStart, stop, restart, pause, or unpause a deploymentread-executedestructive
komodo_destroy_deploymentPermanently destroy a deploymentread-executedestructive
Containers (1 tool)
ToolDescriptionAccessHints
komodo_get_container_logGet logs from any Docker container on a serverread-onlyread-only, idempotent
Builds (4 tools)
ToolDescriptionAccessHints
komodo_list_buildsList all build configurations with version inforead-onlyread-only, idempotent
komodo_get_buildGet build configuration, builder, and action stateread-onlyread-only, idempotent
komodo_run_buildRun a build to create a Docker imageread-execute—
komodo_cancel_buildCancel a running buildread-executedestructive, idempotent
Repos (3 tools)
ToolDescriptionAccessHints
komodo_list_reposList all repos with URL, server, and stateread-onlyread-only, idempotent
komodo_get_repoGet repo configuration, branch, and action stateread-onlyread-only, idempotent
komodo_repo_clone_pullClone or pull a repo on its target serverread-executedestructive
Procedures (3 tools)
ToolDescriptionAccessHints
komodo_list_proceduresList all procedures with stateread-onlyread-only, idempotent
komodo_get_procedureGet procedure stages, operations, and action stateread-onlyread-only, idempotent
komodo_run_procedureRun a procedure (executes all stages)read-executedestructive
Actions (3 tools)
ToolDescriptionAccessHints
komodo_list_actionsList all actions with stateread-onlyread-only, idempotent
komodo_get_actionGet action configuration and action stateread-onlyread-only, idempotent
komodo_run_actionRun a custom TypeScript/Deno actionread-executedestructive
Builders (2 tools)
ToolDescriptionAccessHints
komodo_list_buildersList all builders with typeread-onlyread-only, idempotent
komodo_get_builderGet builder type, server configuration, and stateread-onlyread-only, idempotent
Alerters (2 tools)
ToolDescriptionAccessHints
komodo_list_alertersList all alerters with typeread-onlyread-only, idempotent
komodo_get_alerterGet alerter endpoint type, configuration, and statusread-onlyread-only, idempotent
Resource Syncs (3 tools)
ToolDescriptionAccessHints
komodo_list_resource_syncsList all resource syncs with state and repo inforead-onlyread-only, idempotent
komodo_get_resource_syncGet sync configuration, managed resources, and stateread-onlyread-only, idempotent
komodo_trigger_syncTrigger a GitOps sync from the Git reporead-executedestructive
Updates (2 tools)
ToolDescriptionAccessHints
komodo_list_updatesList operation history with filters for resource type, target, operation, and successread-onlyread-only, idempotent
komodo_get_updateGet full operation details including logs with stdout/stderr for each stageread-onlyread-only, idempotent
Write (1 tool)
ToolDescriptionAccessHints
komodo_write_resourceCreate, update, or delete any Komodo resourcefulldestructive

Verify It Works

After configuring your MCP client, ask your AI assistant:

"What servers are connected to Komodo?"

If the connection is working, the assistant will call komodo_list_servers and return your servers with their current state and region.

Usage Examples

Once configured, ask your AI tool questions in natural language:

  • "List all my servers and their status" -- calls komodo_list_servers to show every server with its current state and region.

  • "What's the CPU and memory usage on server prod-01?" -- calls komodo_get_server_stats to show real-time resource utilization.

  • "Show me the logs from the production stack" -- calls komodo_get_stack_log to retrieve recent log output from all services in the stack.

  • "Deploy the frontend stack" -- calls komodo_deploy_stack to redeploy the stack with its current configuration.

  • "Why did the frontend stack deploy fail?" -- calls komodo_list_updates to find the failed deploy, then komodo_get_update to show the full logs with stdout/stderr.

  • "Pull the latest images for the monitoring stack" -- calls komodo_pull_stack to download updated images without redeploying.

  • "Create a new deployment called api-staging with image myapp:latest" -- calls komodo_write_resource to create a new Deployment resource in Komodo.

Troubleshooting

Connection refused

Check that KOMODO_URL is correct and that Komodo Core is reachable from where the MCP server is running. The server validates the connection on startup, so if it started successfully, the URL was valid at that time.

Invalid credentials / 401 Unauthorized

Verify your API key and secret are correct. Check that the key has not been revoked or expired in the Komodo UI under Settings > API Keys.

Tools not showing up

Check your access tier setting. In read-only mode, only 36 tools are registered. In read-execute mode, 52 tools are registered. Use full (or omit KOMODO_ACCESS_TIER) for all 53 tools. Check KOMODO_CATEGORIES -- only tools in listed categories are registered. Also verify the server started without errors by checking stderr output.

Development

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode (auto-reload)
npm run dev

# Open the MCP Inspector for interactive testing
npm run inspect

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →

Configuration

KOMODO_URL*

URL of the Komodo instance (e.g. https://komodo.example.com)

KOMODO_API_KEY*secret

Komodo API key

KOMODO_API_SECRET*secret

Komodo API secret

Registryactive
Package@samik081/mcp-komodo
TransportSTDIO
AuthRequired
UpdatedMay 23, 2026
View on GitHub