Skip to main content
Glama

Update Decision

update_decision
Idempotent

Update a decision and return it; omitted fields unchanged. Moving status to 'decided' re-stamps the decision time. Re-link via link_type + link_id (verified in-org), or clear with nulls. Resolve the id via list_decisions; only id is required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesDecision id, from list_decisions (required).
titleNoNew title (optional).
statusNoNew status (optional).
link_idNoNew linked id, or null to unlink (optional).
link_typeNoNew link target (optional).
rationaleNoNew rationale; null clears it (optional).

TDQS

A4.8/5.0
Behavior5/5

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

The description adds substantial context beyond the annotations: partial updates ('omitted fields unchanged'), side effect of status change ('re-stamps the decision time'), link verification ('verified in-org'), and clearing with nulls. This goes well beyond the idempotentHint and destructiveHint provided.

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 compact and front-loaded, with the primary action in the first sentence. Every sentence adds useful behavioral or operational detail without padding or redundancy.

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 absence of an output schema, the description adequately covers return behavior ('return it'), id resolution, field semantics, and special cases like relinking and clearing. It is complete for safe invocation of this update operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Even though schema coverage is 100%, the description adds critical semantics: 'omitted fields unchanged', 'only id is required', and the relationship between link_type and link_id ('Re-link via link_type + link_id ... or clear with nulls'). This meaningfully enhances the schema.

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 uses a specific verb and resource ('Update a decision and return it'), clearly distinguishing it from create_decision and list_decisions. It also states key behavioral scope with 'omitted fields unchanged', making the tool's purpose unambiguous.

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?

Provides clear usage context: 'Resolve the id via list_decisions; only id is required' tells the agent how to obtain the required identifier. It also explains optional behaviors like status re-stamping and link handling, though it does not explicitly state when not to use this tool versus alternatives.

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

A4.1/5.0
Disambiguation4/5

Most tools have distinct purposes, but the high number (55) and similar prefixes like 'analyze_', 'list_', 'create_' could cause some confusion. However, detailed descriptions help agents differentiate.

Naming Consistency5/5

Tool names follow a consistent verb_noun snake_case pattern (e.g., create_feature, list_tasks). Only minor exceptions like 'whoami' fit a predictable style.

Tool Count2/5

55 tools is well above the typical range for a MCP server. Even for a comprehensive product OS, the count feels excessive and may overwhelm agents.

Completeness4/5

CRUD operations cover most entities, but missing delete tools (e.g., no delete_feature, delete_task) create minor gaps. Analytics and customer tools are thorough.