Skip to main content
Glama

update_tool

Update an existing tool

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoThe unique name of the tool (used as identifier)
tool_idYesThe ID of the tool to update
tool_typeNoThe type of tool (step, builtin, tip)
is_enabledNoWhether the tool is enabled
session_idYesThe anonymous session ID
step_orderNoThe order of this step in the project workflow
descriptionNoDescription of what the tool does
tool_schemaNoJSON schema for tool parameters
display_nameNoThe human-readable display name of the tool
response_templateNoMarkdown template for tool response

TDQS

D1.7/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It merely says 'update', implying mutation, but fails to disclose any side effects, prerequisites, or what happens to existing fields when updated. This is a significant gap for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely short, but this is under-specification rather than conciseness. A single vague sentence that restates the tool name does not earn its place; it leaves the agent without actionable information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 10-parameter mutation tool with no annotations and no output schema, the description is completely inadequate. It fails to mention required parameters, return values, or interaction with other tools, making it impossible for an agent to use it correctly based on the description alone.

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%, so the input schema already documents all 10 parameters. The description adds no additional meaning beyond the schema. Baseline is 3 for full schema coverage, and no extra semantic context is provided.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Update an existing tool' is essentially a tautology of the tool name 'update_tool'. It identifies the verb (update) and resource (tool) but provides no detail about what aspects can be updated or how it differs from sibling tools like toggle_tool or reorder_steps.

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

Usage Guidelines1/5

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

The description gives no guidance on when to use this tool versus alternatives. There is no mention of scenarios, exclusions, or differences from sibling tools such as toggle_tool (which updates is_enabled) or reorder_steps (which updates step_order).

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

B3.2/5.0
Disambiguation4/5

Most tools are clearly distinct, targeting specific resources (projects, data sources, tools) and actions (add, create, delete, update). Slight overlap exists between toggle_tool and update_tool, and between add_data_source and add_tool, but descriptions clarify the differences.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with snake_case, such as add_data_source, create_project, delete_tool, and reorder_steps. No mixing of conventions or vague verbs.

Tool Count5/5

13 tools is within the ideal range for a project management server. Each tool serves a clear purpose in managing projects, data sources, tools, and sessions, without unnecessary redundancy.

Completeness4/5

Core CRUD operations are covered for projects and tools, with additional operations like reorder and toggle. Minor gaps exist: data sources lack an update operation, and there's no explicit list/get for tools or data sources, but project details likely cover this.

Resources