Skip to main content
Glama

get_translations

Read-onlyIdempotent

List translations from a SimpleLocalize project with filters for key, namespace, language, text, customer ID, and review status. Supports pagination and sorting.

Instructions

This tool will list translations in your SimpleLocalize project.

  • You can filter by key, namespace, language, text, customerId, reviewStatus, and more.

  • Supports pagination with 'page' and 'size'.

  • Supports sort with 'sortBy' and 'sortOrder'.

  • Use 'text' to search for translations containing a specific value (min 3 characters).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyNoFilter by translation key name.
pageNoPage number for pagination (default 0).
sizeNoPage size for pagination (default 100, max 2500).
textNoSearch translations by text value (min 3 chars).
sortByNoSort translations by lastModifiedAt or empty (default alphabetical sort).
baseOnlyNoIf true, returns only base translations (no customer overrides).
languageNoFilter by language key (e.g. en, pl_PL).
namespaceNoFilter by namespace.
sortOrderNoSort order: asc, desc (default).
customerIdNoFilter by customer ID.
textStatusNoFilter by text status: EMPTY, NOT_EMPTY or empty.
reviewStatusNoFilter by review status: REVIEWED, NOT_REVIEWED or empty.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

B3.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds operational behavior beyond annotations: it lists filtering dimensions, pagination, sorting, and the text search minimum length, all consistent with a read-only listing operation.

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

Conciseness4/5

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

The description is concise, front-loaded with the core purpose, and uses a scannable bullet list for capabilities. Every sentence adds functional information; there is no filler or repetition. A minor gap is the vague 'and more' in the filter list, but overall it is well structured.

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 description covers the main operational facets: listing, filtering, pagination, sorting, and the text search constraint. However, there is no output schema and the description does not disclose what the response contains or its structure, which matters for a tool with 12 optional parameters. It is adequate but not fully complete.

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 100%, so the schema already documents every parameter. The description summarizes filter categories and the text minimum length, but does not add substantive meaning beyond what the parameter descriptions already provide. Baseline 3 is appropriate.

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 clearly states a specific verb ('list') and resource ('translations in your SimpleLocalize project'), and the bullet list clarifies what the tool does. However, it does not name or differentiate explicitly from sibling tools like get_translation_keys or get_all_translation_keys, so the distinction is left to inference.

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?

No guidance is provided on when to use this tool versus alternatives. The only usage-related note, the minimum character length for 'text', applies to a parameter rather than tool selection. There are no exclusion criteria or explicit comparisons to sibling tools.

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