What is the Komodo MCP Server MCP server?
Manage Komodo through AI assistants
How to install Komodo MCP Server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
KOMODO_URLrequiredURL of the Komodo instance (e.g. https://komodo.example.com)
KOMODO_API_KEYrequiredsecretKomodo API key
KOMODO_API_SECRETrequiredsecretKomodo API secret
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-komodo": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-komodo"
],
"env": {
"KOMODO_URL": "<YOUR_KOMODO_URL>",
"KOMODO_API_KEY": "<YOUR_KOMODO_API_KEY>",
"KOMODO_API_SECRET": "<YOUR_KOMODO_API_SECRET>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-komodo": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-komodo"
],
"env": {
"KOMODO_URL": "<YOUR_KOMODO_URL>",
"KOMODO_API_KEY": "<YOUR_KOMODO_API_KEY>",
"KOMODO_API_SECRET": "<YOUR_KOMODO_API_SECRET>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-komodo": {
"command": "node",
"args": [
"-y",
"@samik081/mcp-komodo"
],
"env": {
"KOMODO_URL": "<YOUR_KOMODO_URL>",
"KOMODO_API_KEY": "<YOUR_KOMODO_API_KEY>",
"KOMODO_API_SECRET": "<YOUR_KOMODO_API_SECRET>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-komodo": {
"type": "stdio",
"command": "node",
"args": [
"-y",
"@samik081/mcp-komodo"
],
"env": {
"KOMODO_URL": "<YOUR_KOMODO_URL>",
"KOMODO_API_KEY": "<YOUR_KOMODO_API_KEY>",
"KOMODO_API_SECRET": "<YOUR_KOMODO_API_SECRET>"
}
}
}
}Claude Code
claude mcp add mcp-komodo --env KOMODO_URL=<YOUR_KOMODO_URL> --env KOMODO_API_KEY=<YOUR_KOMODO_API_KEY> --env KOMODO_API_SECRET=<YOUR_KOMODO_API_SECRET> -- node -y @samik081/mcp-komodoRelated MCP servers
AdGuard Home MCP Server
Active
Manage AdGuard Home through AI assistants
1
View repository →TypeScript
MIT