Skip to main content
Glama

Update Superforms Draft

update_creation_session

Update a homepage creation handoff draft with the current form title, questions, and settings before the user clicks Set live.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalNo
titleNo
contextNoPrivate smart-follow-up context. Summarize relevant non-sensitive host-conversation context and append any extra context the creator provides. Never shown to respondents.
questionsNoCurrent draft questions to show in the live form preview.
followUpModeNo
responseModeNo
responseLimitNoUse one for a named person/client. Use multiple for feedback forms, surveys, customers, users, and public links.
creationSessionUrlYes
max_total_questionsNoUse 20 for deep-dive interviews.
max_followups_per_questionNoUse 0 by default. Use 1 only when smart follow-ups are explicitly requested.

TDQS

A3.6/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It only says 'update', which implies mutation, but does not explain side effects (e.g., whether it overwrites existing data, if permissions are needed, or what happens if the session is already live). It also doesn't describe the response or errors. The timing caveat 'before Set live' is helpful but insufficient for a mutation tool.

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?

The description is a single, focused sentence that front-loads the verb 'Update'. It is concise with no filler, making the core purpose immediately clear.

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

Completeness2/5

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

The tool is complex with 10 parameters, 3 enums, and no output schema. The description only covers the basic update action and timing. It omits behavioral details (return value, error conditions, prerequisites like session state), making it incomplete for an agent to fully understand consequences and use it correctly.

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

Parameters3/5

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

Schema description coverage is 50%. The description mentions 'form title, questions, and settings', which maps to title, questions, and settings-related params (followUpMode, responseMode, etc.), providing some context beyond the raw schema. However, it does not describe all parameters like 'goal', 'creationSessionUrl', or the enum details, leaving gaps that the schema's own descriptions partially fill.

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

Purpose5/5

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

The description clearly states the tool's action ('Update'), the resource ('homepage creation handoff draft'), and the specific context ('before the user clicks Set live'). It distinguishes itself from sibling creation tools (create_form, create_ask) by focusing on updating an existing draft rather than creating new ones.

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

Usage Guidelines4/5

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

The description provides clear usage context: updating the draft before the user clicks 'Set live'. It implies the tool is for pre-publication edits, but it doesn't explicitly mention alternatives or exclusions (e.g., when not to use it). This is clear context without explicit when-not guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.2/5.0
Disambiguation3/5

There is clear overlap between several tools: create_ask is explicitly a backward-compatible alias for create_form, making them nearly indistinguishable. get_my_form_responses vs get_responses and watch_my_form_responses vs watch_ask also serve similar purposes with only subtle differences (form ownership vs generic ask). The creation session tools (join_creation_session, update_creation_session) and creation tools (create_form, create_feedback_form) have moderately clear boundaries but could confuse agents about when to use session tools vs direct creation.

Naming Consistency3/5

The naming mostly follows a verb_noun pattern (create_form, list_asks, watch_ask) and many share a consistent 'my_' prefix for owned resources. However, the aliasing (create_ask), the distinction between 'ask' and 'form' terminology, and create_feedback_form vs create_form introduce inconsistency in domain vocabulary. Watch_ask vs watch_my_form_responses and get_responses vs get_my_form_responses use parallel but not fully consistent naming.

Tool Count4/5

11 tools is a reasonable count for a form lifecycle server. However, three tools are essentially redundant aliases or near-duplicates (create_ask, get_responses, and possibly watch_ask given HTTP bridge equivalents), which could be consolidated. The count is not excessive or too thin, but the effective surface is smaller than 11 distinct tools.

Completeness3/5

The server covers creation (create_form, create_feedback_form), listing (list_asks, list_my_forms), reading responses (get_responses, get_my_form_responses), and real-time watching (watch_ask, watch_my_form_responses). However, there is no tool for updating or deleting existing forms, and no tool for closing/archiving a form. The creation-session tools are present but lack a corresponding read/view for drafts. The domain is form lifecycle, and update/delete operations for published forms are notable gaps.

Resources