productivity
Google Forms MCP Integration for Codex
Connect Google Forms to Codex through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Google Forms to Codex
Use KosmoKrator as a local MCP proxy for Codex so coding sessions can reach selected integrations with explicit write policy.
Register kosmo mcp:serve as a local stdio server and choose the integration allowlist. The gateway is local, scoped to this integration, and starts with
--write=deny so Codex can inspect read-capable tools without receiving write access by default.
Google Forms MCP Config for Codex
Keep write access denied or ask-based unless the workspace is trusted.
{
"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 Codex
Codex 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. |