Skip to main content
Glama
xari-ya

Google Forms MCP Extended

by xari-ya

create_form

Create a new Google Form with an optional description, providing a starting point for building surveys and collecting responses.

Instructions

Create a form with an optional description.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must convey behavioral detail, but it only restates that a form is created and that its description may be omitted. It does not disclose side effects such as whether an empty form is persisted or what the creation response contains, and it adds little behavioral context beyond the name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One short, front-loaded sentence with no filler or redundant examples. Every word contributes to the core action and the one optional parameter.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and has an output schema, so return-value details are not essential. However, the absence of workflow context and any mention of the required title leaves the definition only minimally viable for an agent working alongside many sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the tool description must compensate; it only says the description is optional, which the schema's default/null already implies. The title parameter's semantics and constraints are left to its property name and the required list.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear action ('create') and resource ('form'), and it mentions the one optional field. It is easy to distinguish from the add_* and update_* siblings, though it does not explicitly name an alternative.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance about when to call this tool instead of update_form_info, add_section, or other siblings, and no mention of a creation workflow. The only usage clue is the imperative 'create', which is already implied by the tool name.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.