KosmoKrator

productivity

Typeform MCP Gateway for AI Agents

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

10 functions 7 read 3 write Bearer token auth

Typeform MCP Gateway

Expose Typeform to MCP clients with `kosmokrator mcp:serve --integration=typeform`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__typeform__typeform_list_forms typeform.typeform_list_forms Read read
integration__typeform__typeform_get_form typeform.typeform_get_form Read read
integration__typeform__typeform_list_responses typeform.typeform_list_responses Read read
integration__typeform__typeform_get_response typeform.typeform_get_response Read read
integration__typeform__typeform_delete_response typeform.typeform_delete_response Write write
integration__typeform__typeform_list_workspaces typeform.typeform_list_workspaces Read read
integration__typeform__typeform_get_workspace typeform.typeform_get_workspace Read read
integration__typeform__typeform_create_webhook typeform.typeform_create_webhook Write write
integration__typeform__typeform_list_webhooks typeform.typeform_list_webhooks Read read
integration__typeform__typeform_delete_webhook typeform.typeform_delete_webhook Write write

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.