Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

Google Forms MCP

NPM · MCP-GOOGLE-FORMS · SCANNED AUG 20

MCP server for the Google Forms API: create forms, manage questions, read responses and watches.

Available components

+29 this week 67 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security98
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • 30 of 96 dependencies flagged as unhealthy. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability70
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 2927 tokens (~225/item across 13 items; 13 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · mcp-google-forms

# add to Claude Code
claude mcp add a1-x-tech-mcp-google-forms -- npx -y mcp-google-forms
# add to Codex CLI
codex mcp add a1-x-tech-mcp-google-forms -- npx -y mcp-google-forms
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "a1-x-tech-mcp-google-forms": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "mcp-google-forms"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add a1-x-tech-mcp-google-forms --command npx --arg -y --arg mcp-google-forms
# ~/.hermes/config.yaml
mcp_servers:
  a1-x-tech-mcp-google-forms:
    command: "npx"
    args: ["-y", "mcp-google-forms"]
// mcp.json
{
  "mcpServers": {
    "a1-x-tech-mcp-google-forms": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-google-forms"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 19 Aug 26 +15
    • Malware scan: unverified → pass security
    • Package version: 1.0.0 → 1.1.0 functional
  • 18 Aug 26 +14
    • Malware scan: pass → unverified security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • Tool coverage: unverified → 100 functional
    • MCP protocol: unverified → pass functional
    • First check of Schema quality: fail functional
    • First check of Schema quality: excellent functional
    • First check of Schema quality: fail functional
    • First check of Tool coverage: 100 functional
    • Package version: 1.0.0 → 1.1.0 functional
  • 11 Aug 26 0
    • Package version: 0.1.0 → 1.0.0 functional
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 9 Aug 26 38

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 20 Aug 2026 · Analysed npm/mcp-google-forms@1.1.0

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm
Dependencies 96 packages
Packages resolved 96
Stale 30
Tree resolution Complete
MCP tools · 13 exposed · ~2,571 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
add_question ~460

Adds a question to the form (a convenience wrapper over batchUpdate createItem). Types: text (short answer), paragraph (long answer), radio (single choice), checkbox (multiple choice), dropdown, scale (linear scale low..high), date, time, rating (stars/hearts/thumbs). Choice types require options[]. Returns the created itemId and questionId from the batchUpdate replies. index inserts at that 0-based position; omit it to append at the end (costs one extra read to count items). Quiz grading (points, correct answers, feedback) cannot be set here — after adding, use update_question with the questionItem.question.grading mask. File-upload questions cannot be created via the API, and question grids (questionGroupItem) need raw_request with a batchUpdate body.

NameTypeReqDescription
descriptionstringHelp text shown under the question.
durationbooleanTime question asks for an elapsed duration instead of a time of day.
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
highintegerScale upper bound (default 5; scale type).
high_labelstringLabel for the highest scale point.
include_timebooleanDate question also asks for a time of day.
include_yearbooleanDate question includes the year.
indexinteger0-based position to insert at; omitted = append after the last item.
lowintegerScale lower bound (default 1; scale type).
low_labelstringLabel for the lowest scale point.
optionsarrayThe choices — required for radio, checkbox and dropdown.
rating_icon_typestringRating icon (default star).
rating_scale_levelintegerNumber of rating icons (3..10; default 5; rating type).
requiredbooleanWhether an answer is required to submit.
shufflebooleanShuffle option order per respondent (choice types).
titlestringyesThe question text shown to respondents.
typestringyesThe question type.

No output schema declared.

No examples provided.

create_form ~205

Creates a new Google Form and returns it (formId, revisionId, responderUri, publishSettings). The API only accepts a title and an optional document title at creation (the Drive file name — it cannot be changed later through this API) — add questions with add_question and change settings with update_form_settings afterwards. IMPORTANT: API-created forms are UNPUBLISHED by default and do not accept responses; pass publish=true to publish immediately, or call set_publish_settings later. If the chained publish step fails, the form still exists: the result carries formId with published:false and publish_error — finish with set_publish_settings, never create_form again. Share the responderUri with respondents once published.

NameTypeReqDescription
document_titlestringThe document name in Google Drive (defaults to the title).
publishbooleanPublish the form right away so it accepts responses (default false — the form stays an unpublished draft).
titlestringyesThe form title shown to respondents.

No output schema declared.

No examples provided.

delete_item ~105

Deletes the item at the given 0-based index (question, page break, text block, ...). Deletion shifts every later item one position down — re-check indexes with get_form between successive deletes.

NameTypeReqDescription
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
indexintegeryes0-based position of the item to delete (from get_form).

No output schema declared.

No examples provided.

get_form ~118

Returns the full form: info (title, description), settings (quiz mode, email collection), items[] with their itemId/questionId and question definitions, publishSettings, responderUri and linkedSheetId. Items are returned in order — their 0-based positions are the indexes that update_question, delete_item and move_item address, so call this before mutating items.

NameTypeReqDescription
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.

No output schema declared.

No examples provided.

get_response ~106

Fetches a single submission by its responseId (from list_responses): answers keyed by questionId, createTime, lastSubmittedTime, respondentEmail and totalScore when available. Map questionId to the question text via get_form.

NameTypeReqDescription
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
response_idstringyesThe response id from list_responses.

No output schema declared.

No examples provided.

list_responses ~258

Lists submitted responses: responseId, createTime, lastSubmittedTime, respondentEmail (only when email collection is on), answers keyed by questionId (map questionId → question via get_form), and totalScore for graded quizzes. submitted_after keeps only responses submitted strictly after that RFC3339 UTC timestamp — the API's only filter; there is no ordering or email filter, do that client-side. Paginate with page_token from nextPageToken. Note: this endpoint has a lower per-minute quota than other reads — poll incrementally with submitted_after rather than re-listing everything. The API is read-only for responses; submitting them programmatically is impossible.

NameTypeReqDescription
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
page_sizeintegerMax responses per page (1..5000; the API's default and max is 5000).
page_tokenstringnextPageToken from the previous page.
submitted_afterstringOnly responses submitted after this RFC3339 UTC timestamp, e.g. 2026-08-01T00:00:00Z (exclusive).

No output schema declared.

No examples provided.

manage_watches ~291

Manages Cloud Pub/Sub push-notification watches on a form. action=create needs event_type (RESPONSES = new submissions, SCHEMA = form structure changes) and topic_name; the topic must live in your Cloud project and grant the Pub/Sub Publisher role to forms-notifications@system.gserviceaccount.com. action=list shows your watches; delete and renew need watch_id. Watches expire after 7 days — renew extends 7 days from now and reactivates a SUSPENDED watch. Notifications carry only formId/watchId/eventType attributes (no payload): on RESPONSES call list_responses with submitted_after, on SCHEMA call get_form. Limits: 1 watch per user per form+event type, 20 per Cloud project.

NameTypeReqDescription
actionstringyesWhat to do with the form's watches.
event_typestringcreate only: RESPONSES (new submissions) or SCHEMA (form structure/settings changes).
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
topic_namestringcreate only: the Cloud Pub/Sub topic, e.g. projects/my-project/topics/forms-events.
watch_idstringdelete/renew: the watch to target. create: optional custom id (auto-generated if omitted).

No output schema declared.

No examples provided.

move_item ~106

Moves the item at from_index to to_index (both 0-based, to_index is the position after removal). Use get_form to see the current order first.

NameTypeReqDescription
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
from_indexintegeryesCurrent 0-based position of the item.
to_indexintegeryesTarget 0-based position.

No output schema declared.

No examples provided.

raw_request ~201

Escape hatch to call any Google Forms API v1 path directly, for requests the typed tools don't cover — e.g. a batchUpdate with questionGroupItem grids, writeControl/requiredRevisionId, includeFormInResponse, or several requests at once: path "v1/forms/<formId>:batchUpdate", method POST, body {"requests":[...]}. The path may carry a query string (e.g. "v1/forms/<id>/responses?filter=timestamp%20%3E%202026-08-01T00:00:00Z"). The Bearer token is added automatically; the method defaults to GET.

NameTypeReqDescription
bodyobjectJSON request body (POST only).
methodstringHTTP method (the Forms API uses only these three). Defaults to GET.
pathstringyesAPI path relative to https://forms.googleapis.com, e.g. "v1/forms/<formId>:batchUpdate".

No output schema declared.

No examples provided.

set_publish_settings ~174

Publishes or unpublishes the form and opens/closes response collection. is_accepting_responses defaults to mirroring is_published (publish = start accepting, unpublish = stop). Use is_published=true with is_accepting_responses=false to keep a published form visible but closed. Fails on legacy forms created before the publish model existed — those are managed only in the Forms UI.

NameTypeReqDescription
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
is_accepting_responsesbooleanWhether the form accepts new responses (defaults to the value of is_published).
is_publishedbooleanyestrue = published (respondents can open it), false = unpublished draft.

No output schema declared.

No examples provided.

update_form_info ~153

Changes the form's title and/or description. Only the provided fields are touched (the updateMask is computed automatically); at least one field is required. The document title (the Drive file name) is set once at create_form and cannot be changed through the Forms API — renaming the file needs the Drive API, which this server does not cover. Returns the batchUpdate replies with the new revisionId.

NameTypeReqDescription
descriptionstringNew form description shown under the title.
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
titlestringNew form title shown to respondents.

No output schema declared.

No examples provided.

update_form_settings ~177

Toggles quiz mode (grading with points) and/or the email collection mode. Quiz mode only enables grading — points, correct answers and feedback are set per question afterwards via update_question with the questionItem.question.grading mask (add_question cannot set them). email_collection_type: DO_NOT_COLLECT, VERIFIED (respondent must be signed in; email verified) or RESPONDER_INPUT (respondent types an email). At least one field is required; only the provided fields are touched.

NameTypeReqDescription
email_collection_typestringHow respondent emails are collected.
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
is_quizbooleanTurn quiz mode on/off (enables per-question grading).

No output schema declared.

No examples provided.

update_question ~217

Updates an existing item (question or other) via batchUpdate updateItem. The item is addressed by its 0-based index — call get_form first to see current positions and the item's current shape. item is a raw Forms API Item object with the new values; update_mask names the fields to replace, e.g. "title" or "title,questionItem.question.required". Only masked fields change; masking a field the item object leaves unset clears it.

NameTypeReqDescription
form_idstringyesThe form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
indexintegeryes0-based position of the item to update (from get_form).
itemobjectyesThe Forms API Item object with the new values, e.g. {"title":"New title","questionItem":{"question":{"required":true}}}.
update_maskstringyesComma-separated field paths to replace, e.g. "title,questionItem.question.required".

No output schema declared.

No examples provided.