Skip to main content
Glama

goal-update

Idempotent

Partial update of a goal — only the fields you pass are changed; omitted fields are untouched. Updatable: title, status, priority (1-5), description, type, tags, deadline, estimate, mode, attemptCommit (git SHA of the attempt commit; once a deployed revision contains it, post-deploy probes of this goal run automatically and record machine verdicts — pass "" to clear). Status transitions are validated (backlog→in_progress→done|cancelled; blocked→in_progress). Grove mode enforces gates: in_progress requires ≥1 AC, done requires file-evidence on every AC + session_history. Returns the updated goal with all fields.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNoРежим цели: standard или grove. Иммутабелен после mode_locked_at
tagsNoНовые теги
typeNoНовый тип: goal, milestone, task, habit
titleNoНовое название (макс. 500)
goalIdYesUUID цели
statusNoНовый статус: backlog, in_progress, blocked, done, cancelled
deadlineNoНовый дедлайн (ISO 8601)
estimateNoНовая оценка
priorityNoНовый приоритет (1–5)
descriptionNoНовое описание
attemptCommitNogit SHA коммита попытки (7–64 hex). Когда развёрнутая ревизия содержит его (предок, не равенство), post-deploy пробы цели стартуют сами по событию деплоя; повторная установка = новая попытка (отметки доставки и пробы сбрасываются); "" снимает

TDQS

A4.5/5.0
Behavior5/5

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

With annotations only indicating readOnlyHint=false and idempotentHint=true, the description carries rich behavioral detail beyond those signals: partial-update semantics, status transition enforcement (backlog→in_progress→done|cancelled; blocked→in_progress), Grove-mode gates (in_progress requires ≥1 AC; done requires file-evidence on every AC + session_history), and the nuanced attemptCommit behavior (post-deploy probe auto-run, re-setting is a new attempt, empty string clears). This is exactly the kind of non-obvious behavior an agent needs.

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 dense but every sentence serves a purpose. It front-loads the core partial-update behavior, lists updatable fields compactly, then layers in validation rules and return value. There is no filler or repetition of schema details; the long attemptCommit explanation is justified because it captures semantics that appear nowhere else.

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 an 11-parameter update tool with no output schema, the description is thorough: it states the return format ('Returns the updated goal with all fields'), covers partial-update semantics, validation rules, Grove-mode constraints, and attemptCommit's special behavior. The schema already documents parameter types and defaults, so the description does not need to repeat them. Together with the schema, an agent has enough to call this correctly in most scenarios.

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 description coverage is 100%, so the baseline is 3. The description adds value beyond the schema by explaining the intent of attemptCommit (auto-running post-deploy probes, clearing with empty string), the validation logic around status transitions, and Grove-mode constraints on status changes. It also confirms the priority range (1-5). This goes beyond what the individual schema descriptions state, though the schema already defines each parameter.

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: 'Partial update of a goal', and immediately clarifies the partial-update semantics ('only the fields you pass are changed; omitted fields are untouched'). It enumerates exactly which goal fields are updatable, distinguishing it from sibling tools like goal-update-assumption or goal-update-criterion by focusing on the goal's own fields and explicitly stating the return value.

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

Usage Guidelines3/5

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

The description gives clear context for when the tool applies — updating any of the listed goal fields — and includes conditional rules (status transition validation, Grove mode gates). However, it never mentions alternatives or exclusion criteria, such as 'use goal-update-criterion for criteria' or 'do not use this for assumptions.' Usage is implied rather than explicitly routed versus sibling tools.

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