KosmoKrator

media

Bannerbear MCP Gateway for AI Agents

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

10 functions 7 read 3 write API key auth

Bannerbear MCP Gateway

Expose Bannerbear to MCP clients with `kosmokrator mcp:serve --integration=bannerbear`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__bannerbear__bannerbear_create_image bannerbear.bannerbear_create_image Write write
integration__bannerbear__bannerbear_get_image bannerbear.bannerbear_get_image Read read
integration__bannerbear__bannerbear_list_images bannerbear.bannerbear_list_images Read read
integration__bannerbear__bannerbear_list_collections bannerbear.bannerbear_list_collections Read read
integration__bannerbear__bannerbear_create_video bannerbear.bannerbear_create_video Write write
integration__bannerbear__bannerbear_get_video bannerbear.bannerbear_get_video Read read
integration__bannerbear__bannerbear_list_templates bannerbear.bannerbear_list_templates Read read
integration__bannerbear__bannerbear_get_template bannerbear.bannerbear_get_template Read read
integration__bannerbear__bannerbear_create_animated_gif bannerbear.bannerbear_create_animated_gif Write write
integration__bannerbear__bannerbear_get_current_user bannerbear.bannerbear_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.