Connect the Google Forms MCP server to your AI agent Open source, MIT, on npm. Setup instructions for Claude, Cursor and Codex are in the repository; adoption questions — Telegram. GitHub repository Telegram

Google Forms: Update form settings — MCP tool

Google Forms MCP tool: Toggles quiz mode (grading with points) and/or the email collection mode.

Technical name: update_form_settings

What task it solves

I want to update form settings.

Toggles quiz mode (grading with points) and/or the email collection mode.

When to use it

Use this capability when you need “Update form settings” without doing the same work manually in the Google Forms interface. It runs only when an AI client calls it.

What to provide

  • form_idrequired. The form id — the long id from the form URL (docs.google.com/forms/d/<formId>/edit) or from create_form output.
  • is_quizoptional. Turn quiz mode on/off (enables per-question grading).
  • email_collection_typeoptional. How respondent emails are collected.

What it returns

Returns compact JSON from the upstream API or a clear MCP tool error. The exact fields depend on the operation and are documented in the technical reference.

What changes in Google Forms

The source marks the entire “Update form settings” call as destructive. The exact effect depends on the selected action and is described below; review the parameters and reversibility before calling it.

Example request

Update form settings in Google Forms. Ask for any required identifiers that are missing. Show me the exact change and wait for confirmation first.

Errors and limitations

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.

Access also depends on token permissions, quotas, and upstream API limits.

Related MCP tools

Technical details