Skip to main content
Glama

RooQuiz

update_form_translation

Save translated copy for one language version of a form. Pass the translated title / description / fields / report / systemText / booking, mirroring the shape returned by get_form_translation; fields you omit keep their current value and partial translation is allowed. Translation fields[] must not introduce codes that do not exist on the source form. Pass isActive=false to pause just this language version, independently of the form's overall isActive.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoTranslated form title
fieldsNoTranslated questions mirroring the source structure: same codes, translated text. The current draft comes from get_form_translation (or the clone create_form_translation returns) — edit the text in place and send it back. Merging is by code, not position, so a partial list is fine and omitted questions stay untranslated.
formIdYesThe source form UUID
reportNoTranslated report display text, mirroring the stored report that get_form_translation returns — the nested overallAnalysis / dimensionAnalysis / outcomeAnalysis shape, NOT the flattened `report` input of create_form / update_form. Scores, formulas, thresholds and codes always come from the source; only the text keys below are applied.
bookingNoTranslated copy for the result-page booking block (the block that offers a call). Whether the block shows at all always comes from the source form — this only translates its wording. Omit a key or send it empty to keep falling back to the source text.
isActiveNoEnable/pause this language version (independent of the form's overall isActive).
languageYesWhich language version to update
systemTextNoTranslated answer-page system copy, as an open key→text map (e.g. { "submitButton": "Absenden", "nextPage": "Weiter" }). Keys are the answer-page copy keys — read the ones already set from get_form_translation, and note that keys the answer page does not know are stored but never rendered. Every key is optional; an empty value falls back to the built-in text for this language.
descriptionNoTranslated form description

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
formIdNoThe source form
updatedNoWhich parts of the translation this call changed
languageNoLanguage that was saved

TDQS

A4.6/5.0
Behavior5/5

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

The description goes well beyond the annotations by explaining the update model: omitted fields keep current value, partial translation is allowed, isActive is independent of the form's overall flag, and invalid field codes are rejected. It also discloses subtle behaviors such as keys being stored but never rendered, placeholders needing to stay intact, source levels being matched by position when no id exists, and scores/formulas/thresholds always coming from the source. No contradiction with the annotations exists.

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 three dense sentences: purpose first, then payload/mirroring and merge semantics, then the isActive behavior. Every sentence adds decision-relevant information, and none restates the schema. The pronoun and structure are efficient despite the tool's high complexity.

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

Completeness4/5

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

Given the tool's complexity — nine parameters, deeply nested objects, matching rules, and fallback behavior — the definition is remarkably complete. It explains merge-by-code, position fallback, source-of-truth behavior for non-text fields, and how to pause a language. The only notable gap is not explicitly stating that a language version must already exist and that create_form_translation should be used to create a new one. With an output schema present, return-value documentation is not needed.

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

Parameters4/5

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

Schema description coverage is exceptionally high, so the schema already documents every parameter in depth. The top-level description adds useful cross-cutting meaning: the whole payload mirrors get_form_translation's shape, omitted fields keep current values, and partial translation is allowed. Since the schema itself carries the detailed per-field semantics, a 4 appropriately credits the description's added context without overstating it.

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 starts with a specific, action-oriented purpose: 'Save translated copy for one language version of a form.' It names the affected resource (a form translation) and immediately distinguishes this update operation from general form editing by listing the translation-specific sections: title, description, fields, report, systemText, booking. This is easily distinguishable from siblings like update_form or create_form_translation.

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 gives clear operational guidance: pass the translated shape mirrored from get_form_translation, omit fields to keep current values, partial translation is allowed, and isActive=false pauses the language independently. The schema adds that the draft should come from get_form_translation or the clone returned by create_form_translation. What is missing is an explicit sentence telling the agent to use create_form_translation first when the language version does not exist yet; this is implied by the update semantics but not stated.

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

A4.1/5.0
Disambiguation4/5

Most tools pair a distinct resource with a distinct verb, and the descriptions do a good job of separating related concepts like leads, records, examinees, and bookings. The only real ambiguity is between list_records (submission records, also called leads) and list_leads (CRM leads), plus a mild overlap between update_form and update_form_settings, but careful reading resolves both.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern, using standard verbs like get_, list_, create_, update_, delete_, add_, insert_, move_, and set_. Minor stylistic variation such as add_question vs. insert_question is still predictable and does not hurt usability.

Tool Count2/5

48 tools is a very heavy surface for an MCP server. While each tool appears purposeful, the server spans forms, questions, translations, analytics, leads, bookings, examinees, media, and team administration, making it feel like a full platform API rather than a focused server. Most agents will only ever need a subset of these tools.

Completeness4/5

The core quiz lifecycle is well covered: form creation/editing/deletion/restore/duplicate/translation, question CRUD/move, delivery settings, statistics/funnels, lead CRM, bookings, examinees, media upload, and tenant basics. The main gaps are minor — no member list/remove/role management beyond invite, no media library listing/deletion, and no bulk export of records — but these do not create dead ends in the primary quiz/lead/booking workflows.

Resources