productivity
Google Forms MCP Integration for Claude Code
Connect Google Forms to Claude Code through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Google Forms to Claude Code
Connect local KosmoKrator integrations to Claude Code through one scoped MCP gateway entry.
Add KosmoKrator as a stdio MCP server in the Claude Code project config and select the integrations that should be visible. The gateway is local, scoped to this integration, and starts with
--write=deny so Claude Code can inspect read-capable tools without receiving write access by default.
Google Forms MCP Config for Claude Code
Claude Code can launch the local kosmo binary directly from the project MCP config.
{
"mcpServers": {
"kosmokrator-google-forms": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=google-forms",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=google-forms --write=deny Why Use KosmoKrator Here
Expose only Google Forms instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Google Forms Tools Visible to Claude Code
Claude Code sees stable MCP tool names generated from the Google Forms integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__google_forms__gforms_list_forms | google-forms.gforms_list_forms | Read | List Google Forms owned by the authenticated user. Returns form IDs, titles, and metadata. Supports pagination and filtering. |
integration__google_forms__gforms_get_form | google-forms.gforms_get_form | Read | Get the full details of a specific Google Form, including its questions, layout, and settings. |
integration__google_forms__gforms_create_form | google-forms.gforms_create_form | Write | Create a new Google Form. Provide a title and optional description. The form will appear in the authenticated user's Google Drive. |
integration__google_forms__gforms_list_responses | google-forms.gforms_list_responses | Read | List responses submitted to a Google Form. Returns answers, timestamps, and respondent metadata. Supports pagination and filtering by date. |
integration__google_forms__gforms_get_response | google-forms.gforms_get_response | Read | Get a specific form response by ID. Returns all answers, the submission timestamp, and respondent metadata. |
integration__google_forms__gforms_create_response | google-forms.gforms_create_response | Write | Submit a response to a Google Form. Provide answers keyed by question ID. Use get_form first to discover question IDs and their types. |
integration__google_forms__gforms_get_current_user | google-forms.gforms_get_current_user | Read | Get the authenticated Google user's profile — email, display name, and profile photo. Use this to verify the connected account. |