Skip to main content
Glama

goal-block

Add a blocker to a goal (blockers are additive — each call appends a new one, existing blockers are preserved). Sets status to blocked. Optionally create an inline resolver goal (resolverTitle) or link an existing one (linkedGoalId) — mutually exclusive. When the last active blocker is removed via goal-remove-blocker, the goal returns to its previous status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
goalIdYesUUID блокируемой цели
descriptionYesОписание блокера — что мешает
linkedGoalIdNoUUID существующей цели-резолвера (взаимоисключающе с resolverTitle)
resolverTitleNoЗаголовок новой цели-резолвера (взаимоисключающе с linkedGoalId)
resolverParentIdNoUUID родителя резолвера (default = goalId, т.е. дочерняя)
resolverDescriptionNoОписание цели-резолвера

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the annotations (readOnly=false, idempotent=false), the description discloses key behavioral traits: additive behavior (each call appends, existing blockers preserved), status change to blocked, the mutual exclusivity of resolver options, and the status-revert mechanism when all blockers are removed. This adds substantial context that annotations alone do not provide.

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 four sentences, each carrying distinct, necessary information: main action, status change, optional resolver behavior, and removal lifecycle. There is no redundancy or filler; it is front-loaded with the primary purpose and efficiently covers the key nuances.

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 covers the core aspects for a tool with 6 parameters and no output schema: additive semantics, status side-effect, resolver creation/linking options, and the effect of removal. It does not mention edge cases like what happens if the goal is already blocked or whether the resolver goal persists after blocker removal, but these are minor relative to the overall completeness.

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 coverage is 100%, so the baseline is 3. The description adds value by explaining the mutual exclusivity of resolverTitle and linkedGoalId, and clarifying that resolverParentId defaults to goalId (making the resolver a child). It also ties the overall additive behavior to the call semantics, enriching parameter understanding.

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 'Add a blocker to a goal', combining a specific verb with a clear resource. It distinguishes this from sibling tools like goal-add-note or goal-add-assumption by explicitly focusing on blockers and their additive, status-changing behavior.

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 provides clear context: blockers are additive, each call appends a new one, and the goal's status is set to blocked. It also mentions the complementary tool goal-remove-blocker and the effect of removing the last blocker, guiding lifecycle usage. It does not explicitly state when NOT to use it, but the guidance is sufficient for this mutation tool.

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