Skip to main content
Glama
prmgint

peon-orchestrator

by prmgint

stop_agent

Stop an active agent by its ID to prevent further execution and free orchestrator resources.

Instructions

Stop a running agent

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_idYesID of the agent

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.2

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden of behavioral disclosure. It only states the high-level action without mentioning side effects, graceful vs. forceful termination, reversibility, required permissions, or error/return behavior. For a mutation tool, this is a significant gap.

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 a single sentence with zero wasted words, front-loaded with the action and resource. Every word earns its place, making it highly concise and well-structured.

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?

The tool has low complexity (one required param, no output schema), so the description is minimally adequate for a basic call. However, it omits important context such as behavior for non-running agents, return values, or prerequisites like checking status first, leaving it incomplete for robust use.

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?

The input schema fully documents the single parameter agent_id with a clear description ('ID of the agent'), giving full schema_description_coverage. The tool description adds no additional meaning beyond this, so the baseline of 3 applies.

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

Purpose4/5

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

The description 'Stop a running agent' uses a specific verb and resource, clearly identifying the tool's function. It is distinct from siblings like spawn_agent and agent_status, though it does not explicitly name them for differentiation.

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

Usage Guidelines3/5

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

There is no explicit guidance on when to use this tool versus alternatives such as agent_status or spawn_agent. The phrase 'Stop a running agent' implies usage when an agent should be terminated, but no when-not conditions or alternative references are provided.

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