Skip to main content
Glama

Poly-Glot AI Workspace

Prepare Poly-Glot Compare Mode

prepare_compare

Prepare one canonical prompt for two or more AI providers so the user can compare answers. Uses the same server-side template entitlement checks as build_prompt and never calls third-party models on the user's behalf.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo
promptNo
valuesNo
providersNo
uiLanguageNoEN
inputLanguageNoEN
outputLanguageNoEN

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
viewYes
promptNo
messageNo
templateNo
providersNo
entitlementYes
instructionsNo
localizationYes
sourceTemplateNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.2/5.0
Behavior3/5

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

The description adds useful behavioral context: it performs server-side template entitlement checks and never calls third-party models. However, readOnlyHint is false, implying possible state changes, and the description does not disclose what 'prepare' actually creates, saves, or modifies. The no-external-call guarantee is valuable, but the side-effect profile remains under-specified.

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?

Two sentences, front-loaded with the core purpose and followed by the most important behavioral caveat. No filler and no redundant repetition of schema information.

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 has 7 parameters, no parameter descriptions in the schema, and a similarly named sibling. The description does not explain how to construct a valid call, what the language or value fields do, or what the output represents. The existence of an output schema softens the return-value gap, but for this parameterized tool the description leaves too much unspecified.

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 description must compensate for undocumented parameters, but it only maps 'canonical prompt' to prompt and 'two or more AI providers' to providers. The meaning of values, uiLanguage, inputLanguage, outputLanguage, and name is left entirely to inference from property names, which is insufficient at this coverage level.

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 names a specific verb ('prepare'), a clear resource ('one canonical prompt for two or more AI providers'), and the intended outcome ('compare answers'). It also distinguishes itself from build_prompt by referencing the same entitlement checks and explicitly stating it never calls third-party models. However, it does not explicitly differentiate from the near-identical sibling prepare_custom_compare, so it stops short of full sibling separation.

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

Usage Guidelines3/5

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

The description implies the tool is for multi-provider answer comparison and clarifies it does not call third-party models, which gives some usage context. But it does not state when to choose this tool over build_prompt or prepare_custom_compare, nor does it give exclusions or prerequisites beyond the entitlement-check mention.

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

A3.5/5.0
Disambiguation4/5

Most tools are clearly separated by resource and action, but translate_text/localize_text and prepare_compare/prepare_custom_compare have adjacent purposes that could cause an agent to choose one when the other is intended. Descriptions provide enough distinction for a careful model, so the ambiguity is limited.

Naming Consistency5/5

All 15 tools follow a consistent snake_case verb_noun pattern with verbs like build, detect, get, localize, open, prepare, run, search, transcribe, translate, and validate. There is no mixing of camelCase, vague imperative fragments, or generic action names.

Tool Count4/5

15 tools is at the upper edge of a well-scoped set, and each functional area has dedicated tools. It is slightly heavy because a few pairs like translate/localize and prepare_compare/prepare_custom_compare are close variations, but the count is still reasonable for the server's broad workspace scope.

Completeness4/5

Core workflows are covered: template search/get/fill, translation and localization, custom model capabilities/validation/run, compare plan preparation, transcription, and entitlement checks. Gaps include no compare-plan execution tool, no template create/update/delete lifecycle, and no persistence for custom model configurations, but agents can work around these.