New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

mcp-google-forms

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mcp-google-forms

MCP server for the Google Forms API — create forms, manage questions, publish, read responses and watch for new submissions. For Claude, Cursor, Codex and other AI clients.

latest
Source
npmnpm
Version
1.2.0
Version published
Weekly downloads
245
116.81%
Maintainers
1
Weekly downloads
 
Created
Source

A1 Google Forms MCP

English | Русский

npm Glama CI License: MIT

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.

  • 19 tools. Inspect form structure and responses, create and edit forms and questions, manage publishing, and configure Pub/Sub watches.
  • Connects from the conversation. Say "connect Google Forms": the server walks you through the OAuth client, catches Google's redirect on 127.0.0.1 with PKCE and keeps the tokens itself — no config files, no restart.
  • 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.body and forms.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.

Contents

Quick start

You need Node.js 20+ and a Google account. Credentials are not required at install time — the server connects from the conversation.

Codex

In the app: open Settings → MCP servers, select Add server, choose STDIO, enter the command npx -y mcp-google-forms@latest and environment variables GOOGLE_FORMS_CLIENT_ID, GOOGLE_FORMS_CLIENT_SECRET, GOOGLE_FORMS_REFRESH_TOKEN, then select Save and Restart.

From the command line:

codex mcp add google-forms \
  -- npx -y mcp-google-forms@latest
codex mcp list

Codex MCP documentation

Claude Code
claude mcp add \
  --transport stdio --scope user google-forms \
  -- npx -y mcp-google-forms@latest
claude mcp list

Claude Code MCP documentation

Claude Desktop

The current official path is Settings → Extensions. For a custom desktop extension, open Advanced settings → Extension Developer → Install Extension…, select a .mcpb file and follow the prompts.

This repository currently publishes an npm stdio package and does not contain a .mcpb bundle. For Claude Desktop builds that still support local configuration, use the following JSON stdio configuration as a fallback:

{
  "mcpServers": {
    "google-forms": {
      "command": "npx",
      "args": ["-y", "mcp-google-forms@latest"]
    }
  }
}

In those builds, save it to ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.

Claude Desktop MCP documentation

Cursor

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"]
    }
  }
}

Cursor MCP documentation

VS Code

Run MCP: Open User Configuration and add:

{
  "servers": {
    "google-forms": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "mcp-google-forms@latest"]
    }
  }
}

Check it with MCP: List Servers.

VS Code MCP documentation

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_form creates 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

OperationWhat happensConfirmation boundary
Read a form and its responsesReads form structure and submissionsNo change
Create a formAdds an unpublished formChanges Google Forms
Add or move a questionChanges form itemsChanges a form
Update form info, settings or an itemChanges title, settings or a selected questionChanges a form
Publish, unpublish, open or close responsesChanges who can use the formChanges a form’s public availability
Delete an itemRemoves a selected questionDestructive
Manage a Pub/Sub watchCreates, renews or deletes notification deliveryPotentially destructive
Raw API requestCan call API methods without a dedicated toolPotentially 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. There are two ways in, and the first one needs no configuration files.

Say "connect Google Forms" and the assistant runs the flow with you:

  • setup_instructions prints the checklist: create or select a Google Cloud project, enable Google Forms API, configure the consent screen and create a Desktop app OAuth client.
  • Download that client's JSON ("Download JSON") and give the assistant its pathset_client stores it owner-only. The secret never goes through the conversation.
  • start_login returns a Google consent link. Open it on this machine and approve; the code comes back to a one-shot listener on 127.0.0.1 (PKCE), never through the chat.
  • finish_login exchanges the code and saves the tokens to ~/.config/mcp-google-forms/credentials.json (mode 0600).

The tokens are re-read on every call, so the connection works immediately — no restart of the AI app. auth_status shows what is connected, logout revokes and deletes it.

Environment variables (CI, unattended installs)

  • 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

Every variable is optional — with none of them the server connects from the chat.

VariableRequiredDescription
GOOGLE_FORMS_CLIENT_IDNo*OAuth client ID.
GOOGLE_FORMS_CLIENT_SECRETNo*OAuth client secret.
GOOGLE_FORMS_REFRESH_TOKENNo*OAuth refresh token.
GOOGLE_FORMS_ACCESS_TOKENNo*Short-lived alternative to the OAuth trio.
GOOGLE_FORMS_OAUTH_PORTNoFixed loopback port for the in-chat login; useful over SSH port forwarding.
GOOGLE_FORMS_API_BASENoGoogle Forms API base URL override.
GOOGLE_FORMS_TIMEOUT_MSNoPer-request timeout; default 60000 ms.
GOOGLE_FORMS_MAX_RETRIESNoTemporary-error retries; default 3.

* 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=0 to opt out.
  • Google applies per-minute quotas. The documented limits are 975 reads per project, 450 list_responses calls and 375 writes. On 429, the server uses backoff; reads also retry after network and 5xx errors, 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

Support

Found a bug or need a scenario? Create an issue or write in Telegram.


Две Моны дают пять

You made it to the end!

Keywords

mcp

FAQs

Package last updated on 20 Sep 2026

Related posts