KosmoKrator

video

Loom MCP Gateway for AI Agents

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

8 functions 6 read 2 write Bearer token auth

Loom MCP Gateway

Expose Loom to MCP clients with `kosmokrator mcp:serve --integration=loom`.

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=loom --write=deny --json
{
  "mcpServers": {
    "kosmokrator-loom": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=loom",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__loom__loom_list_videos loom.loom_list_videos Read read
integration__loom__loom_get_video loom.loom_get_video Read read
integration__loom__loom_create_video loom.loom_create_video Write write
integration__loom__loom_delete_video loom.loom_delete_video Write write
integration__loom__loom_list_workspaces loom.loom_list_workspaces Read read
integration__loom__loom_list_folders loom.loom_list_folders Read read
integration__loom__loom_get_folder loom.loom_get_folder Read read
integration__loom__loom_get_current_user loom.loom_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.