Skip to main content
Glama

pause_plan

Pause a plan to halt its dispatch, review, and merge while other plans continue. Interrupts in-progress stories (checkpointed and resumable) to prevent background usage.

Instructions

Stop advance_pipeline/advance_all_plans from touching this one plan - no new dispatch, review, or merge - while leaving every other ingested plan's scheduler ticks unaffected. Any story currently in_progress is interrupted (checkpointed and left resumable) so a paused plan isn't quietly burning usage in the background. Resume with resume_plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
plan_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries the transparency burden and handles it well: it discloses that in_progress stories are interrupted, checkpointed, and left resumable, and that no background usage is burned. It stops short of describing already-paused behavior or persistence details, but the key side effects are covered.

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?

Three dense sentences front-load the action and scope, then cover side effects and reversal. No filler, restatement, or redundant schema repetition.

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

Completeness5/5

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

For a tool with one required string parameter and an output schema, the description provides everything needed to invoke it correctly: what is stopped, what is preserved, what happens to in-progress work, and how to undo it.

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 schema has 0% description coverage for the single plan_name parameter, and the description never mentions the parameter by name or its format. However, phrases like 'this one plan' and 'paused plan' make the target of the operation clear enough to compensate at a basic level.

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 verb and resource: pause a single plan so advance_pipeline/advance_all_plans no longer dispatch, review, or merge it. It clearly differentiates the tool from global pipeline operations and from resume_plan.

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

Usage Guidelines5/5

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

It explicitly names the sibling tools this operation blocks and clarifies that other plans remain unaffected, which defines the precise use case. It also directs the agent to resume_plan as the paired reversal operation.

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