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/5.0
Behavior3/5

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

Annotations already provide destructiveHint=true and idempotentHint=true, covering the mutation safety profile. The description adds useful context by explaining that project names are intentionally unchanged because phrases reference the name. However, it does not itself disclose that replacing the locale list can remove omitted locales; the schema handles that detail.

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 concise sentences with no filler. The first sentence packs the full purpose, and the second adds a valuable constraint with rationale. It is front-loaded and every sentence 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?

With an output schema, 100% parametr coverage, and annotations for destructive/idempotent behavior, the description is largely sufficient. The only implicit aspect is how optional parametrs interact when omitted, but the schema's 'complete replacement list' and defaultLocale requirements reduce the risk. Slightly more explicit note about partial updates could make it 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%, and each parametr already has detailed descriptions, e.g., 'Complete replacement list of locale codes' and 'New default locale code. It must be one of the project locales.' The description summarizes the three updatable areas but does not add new meaning beyond the schema, so baseline 3 is appropriate.

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 clearly states the verb 'Update', the resource 'MultiLocale project', and the exact editable fields: default locale, complete locale list, and translation context. It also explicitly names a non-goal (project names are intentionally not changed) and distinguishes itself from sibling tools like update_phrase and add_locale.

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?

It gives clear context about when to use this tool: when updating locale settings or translation context. The explicit statement that project names are not changed is a clear exclusion, and 'complete locale list' implies replacement semantics rather than single-locale addition. It does not explicitly name sibling alternatives like add_locale, so it stops short of a perfect score.

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
Disambiguation3/5

Most tools have distinct purposes, but several overlap: get_project and show_project_overview both fetch a project by id/name, and list_phrases, search_phrases, and export_locale_dictionary all return phrase collections in similar ways. Descriptions help clarify edge cases, but an agent could plausibly select the wrong tool in several scenarios.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern: add_, delete_, get_, list_, search_, find_, update_, export_, share_, show_. Minor differences like get_project vs show_project_overview do not break the overall naming convention.

Tool Count4/5

17 tools is slightly above the ideal range but still reasonable for a localization server covering projects, locales, phrases, translation searches, sharing, and team roster. Each tool represents a real operation, even if a few could be consolidated.

Completeness4/5

The surface covers core project and phrase lifecycles well: create/read/update for projects and phrases, delete for phrases, locale updates, translation generation, search/export, and missing-translation analysis. Minor gaps exist, such as no delete_project, no explicit unshare_phrase operation, and no dedicated remove_locale tool.

Resources