KosmoKrator

developer

Svix MCP Gateway for AI Agents

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

7 functions 5 read 2 write API token auth

Svix MCP Gateway

Expose Svix to MCP clients with `kosmokrator mcp:serve --integration=svix`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__svix__svix_list_applications svix.svix_list_applications Read read
integration__svix__svix_get_application svix.svix_get_application Read read
integration__svix__svix_create_application svix.svix_create_application Write write
integration__svix__svix_list_messages svix.svix_list_messages Read read
integration__svix__svix_list_endpoints svix.svix_list_endpoints Read read
integration__svix__svix_create_endpoint svix.svix_create_endpoint Write write
integration__svix__svix_get_current_user svix.svix_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.