Skip to main content
Glama

project-update

Idempotent

Partial update of a project — only the fields you pass are changed; omitted fields are untouched. Updatable: title, slug, description, status (active/archived/paused), tags, icon (emoji), repositoryPath, repositoryUrl, sourceRef ({type:"git",url,ref} — remote-research source), clearSourceRef (true → сбрасывает Project.sourceRef в null; несовместим с sourceRef), isDefault, redTeamMode (optional/advisory/required), evidenceJudgeMode (off/optional/required), allowedGoalMode (any/grove_only), fmeaGenerationMode (off/on), escalationResolveTimeout (off/1h/4h/24h), escalationAutoResolveBy (none/planner-agent), escalationAutoResolveStrategy (suggest-edit/reject-default). Returns the updated project with all fields.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
iconNoИконка (эмодзи, макс. 10 символов)
slugNoНовый slug (только a-z, 0-9, дефис; должен быть уникальным)
tagsNoНовые теги
titleNoНовое название
statusNoНовый статус: active, archived, paused
isDefaultNoСделать проектом по умолчанию
projectIdYesUUID проекта
sourceRefNoИсточник кода для remote-research: {type:"git",url,ref}
descriptionNoНовое описание
redTeamModeNoРежим red-team: optional, advisory, required
repositoryUrlNoURL репозитория
clearSourceRefNoУстановить sourceRef в null (отвязать репозиторий); несовместим с sourceRef
repositoryPathNoПуть к репозиторию на сервере
allowedGoalModeNoРазрешённые режимы целей: any, grove_only
evidenceJudgeModeNoРежим судьи доказательств: off, optional, required
fmeaGenerationModeNoFMEA-генерация: off, on
escalationAutoResolveByNoАвто-резолвер эскалации: none, planner-agent
escalationResolveTimeoutNoТаймаут эскалации: off, 1h, 4h, 24h
escalationAutoResolveStrategyNoСтратегия авто-резолва: suggest-edit, reject-default

TDQS

A4.4/5.0
Behavior4/5

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

The description adds valuable behavioral context beyond the annotations: it details that omitted fields are preserved, how clearSourceRef behaves, and that the updated project is returned. It also notes the incompatibility constraint. Given annotations only provide readOnlyHint=false and idempotentHint=true, the description carries a significant share of transparency, and nothing contradicts the annotations.

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 front-loaded with 'Partial update' and then lists fields compactly in one sentence. While long, it is necessary given the 19 parameters and dense information (values, constraints, return). It could be slightly improved with bullet points, but every part earns its place, so it remains well-structured.

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?

Given the tool's complexity (19 parameters, nested sourceRef, no output schema), the description covers all essential aspects: partial update semantics, every updatable field with allowed values, the conflict scenario, and the return value. This makes it complete for an AI agent to select and invoke correctly, and the annotations fill in the safety/idempotency profile.

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?

Since schema description coverage is 100%, the baseline is 3. The description adds meaning by explaining partial update behavior (omitted fields untouched) and consolidating allowed values for multi-choice fields. It reinforces the clearSourceRef/sourceRef conflict already in the schema, but the partial update note is crucial and not conveyed by the schema alone, justifying a 4.

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 'Partial update of a project' with a specific verb and resource, and enumerates the updatable fields. This distinguishes it from sibling tools like project-create, project-get, and project-delete. The purpose is unambiguous and informative.

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 explicitly explains partial update semantics ('only the fields you pass are changed; omitted fields are untouched'), which guides when to use this tool. It also highlights the incompatibility between clearSourceRef and sourceRef. However, it does not explicitly name alternative tools for full/partial creation or exclusions, though the context makes this clear.

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

Most tools have clear distinct purposes (goal-create vs goal-update vs goal-delete), but the evidence-related tools (goal-add-evidence-text, goal-attach-evidence, goal-request-upload) and note tools (goal-add-note) have overlapping concepts that require careful reading of descriptions to differentiate. Overall, the detailed descriptions help resolve ambiguity, but a few tools could be easily confused.

Naming Consistency4/5

The majority follow a consistent verb_noun pattern with a resource prefix (goal-create, goal-get, project-list, project-update). However, there are deviations like account-delete (noun-verb reversed), goal-todo, goal-summary, goal-tree, and goal-recent-unresolved that break the pattern. The inconsistency is minor but noticeable.

Tool Count2/5

With 38 tools, this server has a very large surface area. Even for a complex planner with evidence management, the number exceeds the 25-tool threshold for 'too many'. Many tools could potentially be consolidated (e.g., goal-add-note and goal-add-evidence-text), and the size may overwhelm agents during tool selection.

Completeness5/5

The tool set provides complete coverage of the domain: full goal lifecycle (create, get, update, delete, list, tree, move, reorder, block), evidence management (attach, request upload, text evidence, remove), acceptance criteria (add, update, remove, request change, resolve escalation), assumptions (add, update, remove, suggest, attach evidence), blockers, notes, project management (CRUD, dependencies), and configuration settings. No critical gaps are apparent.

Resources