KosmoKrator

productivity

Google Forms MCP Gateway for AI Agents

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

13 functions 5 read 8 write OAuth browser flow auth

Google Forms MCP Gateway

Expose Google Forms to MCP clients with `kosmokrator mcp:serve --integration=google_forms`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP Tool Names (13 tools)
MCP toolSource functionType
integration__google_forms__google_forms_add_question google_forms.google_forms_add_question Write write
integration__google_forms__google_forms_add_section google_forms.google_forms_add_section Write write
integration__google_forms__google_forms_add_text_item google_forms.google_forms_add_text_item Write write
integration__google_forms__google_forms_create google_forms.google_forms_create Read read
integration__google_forms__google_forms_delete_item google_forms.google_forms_delete_item Write write
integration__google_forms__google_forms_get google_forms.google_forms_get Read read
integration__google_forms__google_forms_get_response google_forms.google_forms_get_response Read read
integration__google_forms__google_forms_list_responses google_forms.google_forms_list_responses Read read
integration__google_forms__google_forms_move_item google_forms.google_forms_move_item Write write
integration__google_forms__google_forms_publish google_forms.google_forms_publish Read read
integration__google_forms__google_forms_update_info google_forms.google_forms_update_info Write write
integration__google_forms__google_forms_update_question google_forms.google_forms_update_question Write write
integration__google_forms__google_forms_update_settings google_forms.google_forms_update_settings 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.