Skip to main content
Glama

dictionary_translate

Translate a word while preserving its source-sense association. For ambiguous words, run dictionary lookup first and pass the sense ID to get grouped translations that never mix meanings.

Instructions

Translate a word while preserving its source-sense association.

Use dictionary_lookup first for ambiguous words, then pass its sense_id. Results are grouped by source sense and never silently cross senses. max_senses bounds the source-native senses inspected independently of limit. limit is the total translation-candidate budget, fairly shared across matching sense groups. count reports groups and candidate_count reports nested translations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wordYesUnicode query text; normalized with NFKC and casefold for lookup.
limitNoMaximum total result budget for this tool.
sense_idNo
max_sensesNoMaximum source-native lexical senses to inspect.
part_of_speechNo
source_languageYesISO/BCP-47 language tag.
target_languageYesISO/BCP-47 language tag.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.0

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure, and it does so well. It reveals that results are grouped by source sense, that senses are never silently crossed, that max_senses and limit operate independently, and that count and candidate_count report distinct nested result counts.

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 compact and front-loaded: purpose first, usage guidance second, then parameter semantics. Every sentence adds information that is not obvious from the schema, with no filler or repetition.

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

Completeness5/5

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

For a 7-parameter tool with no annotations and an output schema, the description covers the non-obvious behavior thoroughly: sense preservation, result grouping, budget semantics, and count meanings. The only omitted items, such as exact output shape, are already handled by the output schema, so nothing critical is missing.

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 coverage is 71%, so the description does not need to re-explain every parameter. It adds meaningful semantics for the most confusing parameters: max_senses bounds inspected senses independently, limit is the shared translation-candidate budget, and sense_id comes from a prior dictionary_lookup call. This goes beyond the bare schema.

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 opens with a specific verb and resource: 'Translate a word while preserving its source-sense association.' This clearly differentiates it from sibling lookup, synonym, relation, and rhyme tools, and it names dictionary_lookup as the complementary tool for ambiguous words.

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

Usage Guidelines5/5

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

It explicitly instructs the agent to 'Use dictionary_lookup first for ambiguous words, then pass its sense_id,' giving a concrete when-to-use alternative. It also explains how limit and max_senses should be set relative to one another, which guides parameter choices.

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