KosmoKrator

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_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Google Forms MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Google Forms.

Google Forms CLI Matrix

Use these pages for direct Google Forms CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.