Skip to main content
Glama

Update project

update_project
DestructiveIdempotent

Update a MultiLocale project’s default locale, complete locale list, or translation context. Project names are intentionally not changed because phrases reference the project name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contextNoOptional translation context for the project. Use an empty string to clear it.
localesNoComplete replacement list of locale codes. Include the default locale.
defaultLocaleNoNew default locale code. It must be one of the project locales.
projectIdOrNameYesProject id or project name (slug)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes
projectYes
changedFieldsYes

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already mark this as destructive and idempotent, so the description does not need to restate that. It adds beyond the annotations by explaining a non-obvious design invariant: project names cannot be changed because phrases reference the project name. It also signals that the locale list replacement is complete, not additive, which is important destructive context.

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 with no filler. The primary action is stated first, and the critical project-name invariants is placed second. Every word earns its place.

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?

The description plus the 100% schema coverage and annotations provide most of what an agent needs: what can be updated, the fact that project name stays fixed, and the destructive/idempotent nature. The only notable gap is the lack of explicit guidance about using add_locale versus update_project for locale changes, but the schema's 'complete replacement list' language mitigates this.

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 description is not required to carry param details. It does name the high-level update targets (default locale, complete locale list, translation context), which maps to defaultLocale, locales, and context. But it adds no semantics beyond the schema, such as the requirement that defaultLocale be in the locales list or that the locales param is a complete replacement.

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 names a specific verb (Update), a specific resource (MultiLocale project), and exactly which aspects can be changed: default locale, complete locale list, and translation context. It also distinguishes itself by explicitly stating that project names are intentionally not changed, which separates it from any project-naming operation and from sibling tools like add_project.

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 states what the tool can do and gives an explicit when-not: project names are intentionally not changed because phrases reference the project name. This is a clear exclusion. However, it does not explicitly contrast with add_locale or other sibling tools, so an agent must infer that add_locale is the better choice for adding a single locale rather than replacing the complete locale list.

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.9/5.0
Disambiguation4/5

The tool set separates resources (project, phrase, locale, team member) with clear action prefixes. Some read tools overlap: get_project vs show_project_overview, and list_phrases vs search_phrases, but descriptions clarify exact scope and parameters. No two tools appear to perform the same operation.

Naming Consistency5/5

All 17 tools follow a consistent lowercase_snake_case verb_noun pattern, e.g. add_project, list_phrases, update_phrase, export_locale_dictionary. There are no mixed conventions, vague verbs, or inconsistent abbreviation styles. This is exemplary.

Tool Count3/5

At 17 tools, the set is on the heavy side for a localization server and above the typical 3-15 well-scoped range. While each tool has a distinct purpose, show_project_overview and the find_* diagnostics add surface area and could be trimmed without losing core functionality. Still, the count is not excessive for the broad domain.

Completeness3/5

Phrases have full CRUD plus search/share, and projects have create/read/update/list, but delete_project is absent, leaving an obvious lifecycle gap. Team member operations are list-only, and locale removal is only possible indirectly via update_project. Core translation workflows work, but these gaps will block some common tasks.

Resources