Skip to main content
Glama
ZMC1011

Keil5 MCP Server

by ZMC1011

build_cancel

Cancel a running build by supplying its build ID, stopping the compilation process to save time and resources.

Instructions

Request cancellation of a running build.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
build_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, but it only says 'Request cancellation'. It does not disclose whether cancellation is asynchronous, whether it is idempotent, what happens if the build already finished, or whether the operation is reversible. The word 'request' adds slight nuance but leaves major behavior unstated.

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

Conciseness4/5

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

The description is an efficient single sentence with no filler; the core action and target are front-loaded. It loses a point only because it is so terse that it omits useful context, though brevity itself is a strength.

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

Completeness2/5

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

For a state-changing tool with no output schema and no annotations, the description is too sparse. It identifies the action and target but omits return behavior, error conditions, and side effects, leaving an agent to call it without knowing what to expect.

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%, so the description must compensate. It does not explain build_id's format, origin, or how it relates to build_project, aside from the implicit link to a 'running build'. The parameter name is self-descriptive, but the description adds little over 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 states a specific action ('Request cancellation') and a clearly distinguished resource ('a running build'). This differentiates it from siblings like build_project and build_progress_status, which start or monitor builds 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 Guidelines2/5

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

The description gives no guidance on when cancellation is appropriate, when it is not (e.g., completed or failed builds), or what alternative should be used. It only implies the target must be a running build.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.