KosmoKrator

productivity

RunPod MCP Gateway for AI Agents

Expose RunPod tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

7 functions 7 read 0 write Bearer token auth

RunPod MCP Gateway

Expose RunPod to MCP clients with `kosmokrator mcp:serve --integration=runpod`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=runpod --write=deny --json
{
  "mcpServers": {
    "kosmokrator-runpod": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=runpod",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=runpod --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__runpod__runpod_list_pods runpod.runpod_list_pods Read read
integration__runpod__runpod_get_pod runpod.runpod_get_pod Read read
integration__runpod__runpod_list_templates runpod.runpod_list_templates Read read
integration__runpod__runpod_list_network_volumes runpod.runpod_list_network_volumes Read read
integration__runpod__runpod_list_endpoints runpod.runpod_list_endpoints Read read
integration__runpod__runpod_list_serverless runpod.runpod_list_serverless Read read
integration__runpod__runpod_get_current_user runpod.runpod_get_current_user Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.