Skip to main content
Glama

Stoory Hire Specialist

Cancel task

cancel_task

Cancels the task, as long as the specialist has not started work yet.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations provided, the description carries the behavioral burden. It discloses an important conditional behavior: cancellation is only possible before work has started. However, it does not mention what happens if the specialist has already started, whether cancellation is reversible, or what response can be expected.

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?

A single sentence that states the action and the critical precondition without wasted words. The most important constraint is front-loaded and easy to parse.

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

Completeness3/5

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

For a simple single-parameter mutation tool, the purpose and precondition are present. However, with no annotations and no output schema, the description leaves out likely useful details such as error behavior when the task cannot be cancelled and whether the action is irreversible.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explicitly explain the task_id parameter. The meaning is weakly implied by 'Cancels the task,' but the description does not compensate for the lack of parameter documentation.

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 names a specific verb ('Cancels') and resource ('the task'), and includes the key precondition. It is clearly distinct from its siblings, which create, retrieve, or search tasks rather than cancel them.

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 supplies the relevant condition for use: cancellation is valid only when the specialist has not started work. It does not explicitly mention alternatives, but none of the siblings perform a comparable cancel operation, so this is sufficient.

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

The tools are mostly distinct: search_specialists, create_task, cancel_task, and get_task_repo_files each have clear, separate roles. However, get_task_result and get_task_status overlap somewhat since both report task status, though get_task_result additionally provides the repo link.

Naming Consistency5/5

Tool names follow a consistent verb_noun pattern: create_task, cancel_task, get_task_status, get_task_result, get_task_repo_files, and search_specialists. The one non-get verb, search_specialists, still fits the same predictable convention.

Tool Count5/5

Six tools is well-scoped for the hiring-specialist workflow: searching, creating, canceling, monitoring, retrieving results, and inspecting repo files. Each tool serves a necessary step without unnecessary expansion.

Completeness4/5

The core lifecycle is covered: find a specialist, create a task, cancel if needed, check status, retrieve results, and inspect files. Minor gaps exist such as no explicit task-listing tool or ability to update task details, but these are not obvious dead ends for the stated purpose.