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
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
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 1 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
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.
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
claude mcp add a1-x-tech-mcp-google-forms -- npx -y mcp-google-forms
codex mcp add a1-x-tech-mcp-google-forms -- npx -y mcp-google-forms
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"a1-x-tech-mcp-google-forms": {
"type": "local",
"command": [
"npx",
"-y",
"mcp-google-forms"
],
"enabled": true
}
}
} openclaw mcp add a1-x-tech-mcp-google-forms --command npx --arg -y --arg mcp-google-forms
mcp_servers:
a1-x-tech-mcp-google-forms:
command: "npx"
args: ["-y", "mcp-google-forms"] {
"mcpServers": {
"a1-x-tech-mcp-google-forms": {
"command": "npx",
"args": [
"-y",
"mcp-google-forms"
]
}
}
} 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.
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 |
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.
add_question Add a 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.
| Name | Type | Req | Description |
|---|---|---|---|
| description | string | – | Help text shown under the question. |
| duration | boolean | – | Time question asks for an elapsed duration instead of a time of day. |
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| high | integer | – | Scale upper bound (default 5; scale type). |
| high_label | string | – | Label for the highest scale point. |
| include_time | boolean | – | Date question also asks for a time of day. |
| include_year | boolean | – | Date question includes the year. |
| index | integer | – | 0-based position to insert at; omitted = append after the last item. |
| low | integer | – | Scale lower bound (default 1; scale type). |
| low_label | string | – | Label for the lowest scale point. |
| options | array | – | The choices — required for radio, checkbox and dropdown. |
| rating_icon_type | string | – | Rating icon (default star). |
| rating_scale_level | integer | – | Number of rating icons (3..10; default 5; rating type). |
| required | boolean | – | Whether an answer is required to submit. |
| shuffle | boolean | – | Shuffle option order per respondent (choice types). |
| title | string | yes | The question text shown to respondents. |
| type | string | yes | The question type. |
No output schema declared.
No examples provided.
create_form Create a 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.
| Name | Type | Req | Description |
|---|---|---|---|
| document_title | string | – | The document name in Google Drive (defaults to the title). |
| publish | boolean | – | Publish the form right away so it accepts responses (default false — the form stays an unpublished draft). |
| title | string | yes | The form title shown to respondents. |
No output schema declared.
No examples provided.
delete_item Delete an 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.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| index | integer | yes | 0-based position of the item to delete (from get_form). |
No output schema declared.
No examples provided.
get_form Get a 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.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | The 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 Get one 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.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| response_id | string | yes | The response id from list_responses. |
No output schema declared.
No examples provided.
list_responses List form 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.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| page_size | integer | – | Max responses per page (1..5000; the API's default and max is 5000). |
| page_token | string | – | nextPageToken from the previous page. |
| submitted_after | string | – | Only responses submitted after this RFC3339 UTC timestamp, e.g. 2026-08-01T00:00:00Z (exclusive). |
No output schema declared.
No examples provided.
manage_watches Manage push-notification 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.
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | What to do with the form's watches. |
| event_type | string | – | create only: RESPONSES (new submissions) or SCHEMA (form structure/settings changes). |
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| topic_name | string | – | create only: the Cloud Pub/Sub topic, e.g. projects/my-project/topics/forms-events. |
| watch_id | string | – | delete/renew: the watch to target. create: optional custom id (auto-generated if omitted). |
No output schema declared.
No examples provided.
move_item Move an 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.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| from_index | integer | yes | Current 0-based position of the item. |
| to_index | integer | yes | Target 0-based position. |
No output schema declared.
No examples provided.
raw_request Raw Google Forms API call ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| body | object | – | JSON request body (POST only). |
| method | string | – | HTTP method (the Forms API uses only these three). Defaults to GET. |
| path | string | yes | API path relative to https://forms.googleapis.com, e.g. "v1/forms/<formId>:batchUpdate". |
No output schema declared.
No examples provided.
set_publish_settings Publish or unpublish a form ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| is_accepting_responses | boolean | – | Whether the form accepts new responses (defaults to the value of is_published). |
| is_published | boolean | yes | true = published (respondents can open it), false = unpublished draft. |
No output schema declared.
No examples provided.
update_form_info 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.
| Name | Type | Req | Description |
|---|---|---|---|
| description | string | – | New form description shown under the title. |
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| title | string | – | New form title shown to respondents. |
No output schema declared.
No examples provided.
update_form_settings 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.
| Name | Type | Req | Description |
|---|---|---|---|
| email_collection_type | string | – | How respondent emails are collected. |
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| is_quiz | boolean | – | Turn quiz mode on/off (enables per-question grading). |
No output schema declared.
No examples provided.
update_question Update an item ~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.
| Name | Type | Req | Description |
|---|---|---|---|
| form_id | string | yes | The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output. |
| index | integer | yes | 0-based position of the item to update (from get_form). |
| item | object | yes | The Forms API Item object with the new values, e.g. {"title":"New title","questionItem":{"question":{"required":true}}}. |
| update_mask | string | yes | Comma-separated field paths to replace, e.g. "title,questionItem.question.required". |
No output schema declared.
No examples provided.