cancel_schedule
Cancel an active cron schedule to stop all future executions immediately.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | No | Agent ID for ownership verification | |
| schedule_id | Yes | Schedule UUID to cancel |
Cancel an active cron schedule to stop all future executions immediately.
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | No | Agent ID for ownership verification | |
| schedule_id | Yes | Schedule UUID to cancel |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full burden. It discloses the primary effect (immediate stop of future executions) and notes it applies to active schedules. However, it does not mention reversibility, whether the schedule is deleted or just disabled, or any ownership verification requirement (agent_id).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single clear sentence that directly states the action and its effect, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, but with no annotations or output schema, the description leaves gaps such as what happens after cancellation, whether it is idempotent, and if any validation occurs. It provides the essential purpose but not enough context for a fully safe invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents both parameters. The description adds no additional meaning beyond the schema text; it does not elaborate on how schedule_id is used or the role of agent_id.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Cancel') and identifies the resource ('active cron schedule') with a clear outcome ('stop all future executions immediately'). It distinguishes from siblings like schedule_task (create), check_schedule (view), and get_execution_history (history).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: when an active cron schedule needs its future executions stopped. However, it does not explicitly mention alternatives or when not to use it, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct operation: scheduling, canceling, checking status, and retrieving history. There is no overlap or ambiguity between the four tools.
All tool names follow a consistent verb_noun pattern: schedule_task, cancel_schedule, check_schedule, get_execution_history. This makes the tool set predictable and easy to navigate.
With four tools, the server is well-scoped for a focused task scheduler. Each tool covers a necessary operation without unnecessary bloat or missing essentials.
Core lifecycle is covered: create, cancel, check status, and view history. Missing an update operation and a list-all-schedules function, but users can work around these by canceling and re-creating schedules.