productivity
Google Forms MCP, CLI, and Lua Integration for AI Agents
Google Forms integration docs for AI agents: MCP gateway setup, Google Forms CLI commands, Lua API reference, credentials, and function schemas.
7 functions 5 read 2 write Manual OAuth token auth
Google Forms for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
google-forms- route_slug
google-forms- package
google-forms- auth_strategy
oauth2_manual_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Google Forms CLIHeadless setup and direct function calls. Google Forms MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Google Forms MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Google Forms.
Claude Code Google Forms MCP setup for Claude Code. Cursor Google Forms MCP setup for Cursor. Codex Google Forms MCP setup for Codex. OpenAI Agents Google Forms MCP setup for OpenAI Agents SDK. Claude Agent SDK Google Forms MCP setup for Claude Agent SDK. Vercel AI SDK Google Forms MCP setup for Vercel AI SDK. LangChain Google Forms MCP setup for LangChain. LangGraph Google Forms MCP setup for LangGraph. CrewAI Google Forms MCP setup for CrewAI. MCP clients Google Forms MCP setup for Generic MCP Clients.
Google Forms CLI Matrix
Use these pages for direct Google Forms CLI workflows in scripts, CI, cron, and agent wrappers.
CI Google Forms CLI for CI. Cron Jobs Google Forms CLI for cron jobs. Shell Scripts Google Forms CLI for shell scripts. Headless Automation Google Forms CLI for headless automation. Coding Agents Google Forms CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
google-forms.gforms_list_forms | Read read | 3 | List Google Forms owned by the authenticated user. Returns form IDs, titles, and metadata. Supports pagination and filtering. |
google-forms.gforms_get_form | Read read | 1 | Get the full details of a specific Google Form, including its questions, layout, and settings. |
google-forms.gforms_create_form | Write write | 4 | Create a new Google Form. Provide a title and optional description. The form will appear in the authenticated user's Google Drive. |
google-forms.gforms_list_responses | Read read | 4 | List responses submitted to a Google Form. Returns answers, timestamps, and respondent metadata. Supports pagination and filtering by date. |
google-forms.gforms_get_response | Read read | 2 | Get a specific form response by ID. Returns all answers, the submission timestamp, and respondent metadata. |
google-forms.gforms_create_response | Write write | 2 | Submit a response to a Google Form. Provide answers keyed by question ID. Use get_form first to discover question IDs and their types. |
google-forms.gforms_get_current_user | Read read | 0 | Get the authenticated Google user's profile — email, display name, and profile photo. Use this to verify the connected account. |