Skip to main content
Glama
Cerios-TechLab

GitHub Workflow Fix-and-Retry MCP Server

Retry Now

retry_now

Schedule an immediate retry for a failed GitHub Actions workflow chain to resume CI/CD without manual intervention.

Instructions

Schedule a chain for immediate retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
chain_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations, the description must carry behavioral disclosure, but 'schedule' only vaguely implies a side effect. It does not say whether scheduling is idempotent, whether it replaces an existing retry, whether it mutates chain state, or whether it requires a current run to be finished.

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 a single six-word sentence with no filler and is appropriately front-loaded. It is concise, though at the cost of omitting useful context.

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?

The tool is simple, has a single parameter, and provides an output schema, but the description still leaves key gaps: no guidance on when a retry is valid, no explanation of scheduling semantics, and no behavioral context. An agent can only guess at the effects or prerequisites.

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 explain chain_id beyond echoing the schema property name. The integer type and required flag are helpful, but the description adds no meaning about what the identifier must reference.

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 states a specific action and object: 'Schedule a chain for immediate retry.' This makes it distinct from sibling tools like list_chains or pause_chain, though it does not explicitly name the alternative it should not be confused with.

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 conditions for when retry_now should be chosen instead of resume_chain or create_issue_now, nor does it mention prerequisites such as the chain being in a failed or paused state. An agent must infer usage from the name alone.

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