KosmoKrator

payments

Stripe Connect MCP Gateway for AI Agents

Expose Stripe Connect 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

Stripe Connect MCP Gateway

Expose Stripe Connect to MCP clients with `kosmokrator mcp:serve --integration=stripe-connect`.

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

Serve Manually

kosmokrator mcp:serve --integration=stripe-connect --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__stripe_connect__stripe_connect_list_accounts stripe-connect.stripe_connect_list_accounts Read read
integration__stripe_connect__stripe_connect_get_account stripe-connect.stripe_connect_get_account Read read
integration__stripe_connect__stripe_connect_list_payouts stripe-connect.stripe_connect_list_payouts Read read
integration__stripe_connect__stripe_connect_get_payout stripe-connect.stripe_connect_get_payout Read read
integration__stripe_connect__stripe_connect_list_balances stripe-connect.stripe_connect_list_balances Read read
integration__stripe_connect__stripe_connect_list_capabilities stripe-connect.stripe_connect_list_capabilities Read read
integration__stripe_connect__stripe_connect_get_current_user stripe-connect.stripe_connect_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.