mcp-google-forms
This MCP server enables AI clients (like Claude, Cursor, Codex) to fully manage Google Forms via natural language, covering creation, editing, publishing, response retrieval, and push notifications.
Form Management
Create forms with title and optional immediate publishing
Retrieve full form structure, items, settings, publish state, and responder URL
Update title, description, or Google Drive document name
Toggle quiz mode and configure email collection (none, verified, or respondent-input)
Questions & Items
Add questions of various types: short text, paragraph, multiple choice (radio/checkbox/dropdown), linear scale, date, time, and rating (stars/hearts/thumbs)
Update existing questions by index using a raw Forms API Item object and explicit update mask
Delete items at a given position (automatic index shifting awareness)
Reorder items by moving from one index to another
Publishing & Access Control
Publish or unpublish a form
Independently open or close response collection; can keep form visible but closed
Responses
List submissions with pagination and incremental filtering by submission time (
submitted_after)Fetch a single response by ID, including answers, timestamps, respondent email, and quiz scores
Read-only: cannot submit or edit responses
Push Notifications
Create Cloud Pub/Sub watches for new submissions (
RESPONSES) or form structure changes (SCHEMA)List, delete, and renew watches (which expire after 7 days)
Advanced
Make raw calls to any Google Forms API v1 endpoint for unsupported operations (e.g., grids,
batchUpdatewithwriteControl,includeFormInResponse)Built-in resilience: automatic OAuth token refresh, retries with backoff, request timeouts, and SSRF protection
Provides tools for managing Google Forms end-to-end: creating forms, adding and editing questions, publishing/unpublishing, reading responses, and managing push-notification watches.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-google-formsCreate a customer feedback form with a rating question and publish it."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Google Forms MCP
English | Русский
A1 Google Forms MCP lets an AI app build and manage Google Forms in plain language. Create a survey, choose its questions, publish it when ready, read answers and use notifications for new submissions.
It uses the Google Forms API with your Google account. It distinguishes a draft form from a published form and makes the limits of the Forms API explicit instead of implying that every form task is possible.
13 tools. Inspect form structure and responses, create and edit forms and questions, manage publishing, and configure Pub/Sub watches.
Publish deliberately. Forms made through the API start unpublished, so they cannot collect responses until you publish them.
Responses stay intact. The API can read responses but cannot create or edit them; the server has no tool that submits answers.
Minimal Google scopes. It uses
forms.bodyandforms.responses.readonly, without broad Drive access.
Start with a read-only question:
Show me yesterday’s responses to the customer feedback form and summarize the free-text answers.
Connect the server · Explore use cases · Open technical documentation
See it work in a minute
You: Show me the questions and response settings of the customer feedback form.
Assistant: Shows the form, its items, whether it is published and whether it accepts responses. Nothing changes.
You: Prepare a required 1–5 rating question called “How was your experience?” after the first question.
Assistant: Shows the target form, position and proposed question, then asks for confirmation before adding it.
You: Confirm.
Assistant: Adds the question to the form. It does not publish or close the form unless you ask separately.
Related MCP server: Google Workspace MCP Server
Contents
Quick start
You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Google Forms API enabled.
Add the server to your AI app.
Ask the read-only question above.
In the app: open Settings → Plugins → MCP servers, select Add server, then add npx -y mcp-google-forms@latest with GOOGLE_FORMS_CLIENT_ID, GOOGLE_FORMS_CLIENT_SECRET and GOOGLE_FORMS_REFRESH_TOKEN.
From the command line:
codex mcp add google-forms \
--env GOOGLE_FORMS_CLIENT_ID=your_client_id \
--env GOOGLE_FORMS_CLIENT_SECRET=your_client_secret \
--env GOOGLE_FORMS_REFRESH_TOKEN=your_refresh_token \
-- npx -y mcp-google-forms@latestcodex mcp listclaude mcp add \
--env GOOGLE_FORMS_CLIENT_ID=your_client_id \
--env GOOGLE_FORMS_CLIENT_SECRET=your_client_secret \
--env GOOGLE_FORMS_REFRESH_TOKEN=your_refresh_token \
--transport stdio --scope user google-forms \
-- npx -y mcp-google-forms@latestclaude mcp listOpen Settings → Developer → Edit Config and add:
{
"mcpServers": {
"google-forms": {
"command": "npx",
"args": ["-y", "mcp-google-forms@latest"],
"env": {
"GOOGLE_FORMS_CLIENT_ID": "your_client_id",
"GOOGLE_FORMS_CLIENT_SECRET": "your_client_secret",
"GOOGLE_FORMS_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}If Edit Config is unavailable, edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.
Claude Desktop MCP documentation
Add this to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:
{
"mcpServers": {
"google-forms": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-google-forms@latest"],
"env": {
"GOOGLE_FORMS_CLIENT_ID": "your_client_id",
"GOOGLE_FORMS_CLIENT_SECRET": "your_client_secret",
"GOOGLE_FORMS_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}Run MCP: Open User Configuration and add:
{
"servers": {
"google-forms": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-google-forms@latest"],
"env": {
"GOOGLE_FORMS_CLIENT_ID": "${input:forms_client_id}",
"GOOGLE_FORMS_CLIENT_SECRET": "${input:forms_client_secret}",
"GOOGLE_FORMS_REFRESH_TOKEN": "${input:forms_refresh_token}"
}
}
},
"inputs": [
{ "type": "promptString", "id": "forms_client_id", "description": "Google OAuth client ID" },
{ "type": "promptString", "id": "forms_client_secret", "description": "Google OAuth client secret", "password": true },
{ "type": "promptString", "id": "forms_refresh_token", "description": "Google OAuth refresh token", "password": true }
]
}Check it with MCP: List Servers.
What you can ask it to do
Inspect a survey and its answers
Show this form’s questions, response settings and responder link.
How many answers arrived since Monday? Summarize the free-text feedback.
Show one response by ID.
Build and improve a form
Create an RSVP form with name, meal preference and arrival date.
Add a required rating, dropdown, date, time, choice or text question.
Reorder a question or update a title, description, quiz mode or email collection.
Publish and connect notifications
Publish a prepared form and show its responder URL.
Stop accepting new responses without deleting the form.
Create, renew or remove a Cloud Pub/Sub watch for new submissions.
How a form changes
create_formcreates a form, which starts unpublished by default.Questions are items, identified by their position in the form.
Publishing makes a form available to respondents; closing response collection leaves it published but stops new submissions.
Responses are a separate read-only record. The API cannot submit, edit or delete a respondent’s answer.
File-upload questions cannot be created through the Forms API, although existing file-upload items can be read. Legacy forms created before Google’s publish model may not support publishing settings.
What can change
Operation | What happens | Confirmation boundary |
Read a form and its responses | Reads form structure and submissions | No change |
Create a form | Adds an unpublished form | Changes Google Forms |
Add or move a question | Changes form items | Changes a form |
Update form info, settings or an item | Changes title, settings or a selected question | Changes a form |
Publish, unpublish, open or close responses | Changes who can use the form | Changes a form’s public availability |
Delete an item | Removes a selected question | Destructive |
Manage a Pub/Sub watch | Creates, renews or deletes notification delivery | Potentially destructive |
Raw API request | Can call API methods without a dedicated tool | Potentially destructive |
The AI client controls confirmation prompts. The server marks reads, writes and destructive tools so the client can distinguish an inspection from a live change.
Getting access
Google Forms requires OAuth 2.0; an API key is not enough.
Create or select a Google Cloud project and enable Google Forms API.
Configure the OAuth consent screen and create a Desktop app OAuth client.
Authorize the Google account that owns or can edit the forms. The OAuth 2.0 Playground can obtain the refresh token when Use your own OAuth credentials is enabled.
Request both scopes:
https://www.googleapis.com/auth/forms.body https://www.googleapis.com/auth/forms.responses.readonly
Testing-mode OAuth refresh tokens can expire after seven days. Publish the OAuth app, or use an Internal app in a Workspace domain, when you need long-lived access. Treat the client secret and refresh token as passwords.
Configuration
Variable | Required | Description |
| Yes* | OAuth client ID. |
| Yes* | OAuth client secret. |
| Yes* | OAuth refresh token. |
| Yes* | Short-lived alternative to the OAuth trio. |
| No | Google Forms API base URL override. |
| No | Per-request timeout; default |
| No | Temporary-error retries; default |
* Provide either the OAuth trio or an access token.
Data, limits and background work
Requests go to Google Forms. The local server refreshes Google OAuth tokens and calls the Forms API. Its anonymous telemetry contains an installation ID, package version, AI client and platform versions, and tool names — never OAuth tokens, form data, tool arguments or prompts. Set
ASKADS_TELEMETRY=0to opt out.Google applies per-minute quotas. The documented limits are 975 reads per project, 450
list_responsescalls and 375 writes. On429, the server uses backoff; reads also retry after network and5xxerrors, while writes are not replayed after an uncertain failure.There is no background polling. The server runs only when called. Pub/Sub watches can notify your own infrastructure about new responses; if your AI app supports scheduled tasks, it can also check responses periodically.
Technical documentation
MCP capability catalog — task-oriented pages for every tool.
Support
Found a bug or need a scenario? Create an issue or write in Telegram.
Maintenance
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables interaction with Google Sheets through natural language, allowing users to create, read, update, and manage spreadsheet data via the Google Sheets API v4.
- AlicenseNot gradedqualityDmaintenanceA comprehensive MCP server integrating Google Docs, Sheets, Drive, Gmail, Calendar, and Apps Script APIs, featuring unique Apps Script support for AI-driven automation.138MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for reading, editing, and publishing Google Forms with the official Google Forms API. Enables AI agents to programmatically create, modify, and manage forms and responses.MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables AI assistants to interact with Google Docs, Sheets, and Drive using the user's own Google account.
Related MCP Connectors
MCP server for Google Veo AI video generation
MCP server for AI dialogue using various LLM models via AceDataCloud
Hosted Google Calendar MCP server for AI agents. No self-hosting or Google Cloud setup.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/A1-x-Tech/mcp-google-forms'
If you have feedback or need assistance with the MCP directory API, please join our Discord server