Skip to main content
Glama
igorolv

redmine-mcp-server

getBlockerChain

getBlockerChain
Read-onlyIdempotent

Trace blocks/blocked_by relations recursively in both directions to return full upstream and downstream blocking dependency chains for an issue.

Instructions

Trace only blocks/blocked_by relations recursively in both directions, returning the full upstream and downstream blocking dependency chains. Use getIssueTree for parent/subtask hierarchy and other direct relation types.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
issueIdYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
rootNoThe issue the chain is centred on.
blocksNoIssues that depend on the root (recursively), each annotated with its depth from the root.
blockedByNoIssues that block the root (recursively), each annotated with its depth from the root.
chainDepthYesEnd-to-end depth of the chain (upstream + 1 + downstream).
totalIssuesYesTotal number of distinct issues in the chain (including the root).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

The annotations already establish readOnlyHint, non-destructive, and idempotent behavior. The description adds meaningful behavioral detail beyond those annotations: traversal is recursive in both directions and returns full dependency chains. This is useful context not inferable from the annotations or schema, though it does not cover edge cases like cycles or depth limits.

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?

Two sentences with no filler: the first sentence states the core behavior and scope, and the second sentence provides a direct pointer to the relevant sibling tool. The most important information is front-loaded.

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

Completeness4/5

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

For a read-only, single-parameter tracing tool with an output schema, the description covers the essential behavior and sibling differentiation. It does not mention potential cycle handling or whether the full chain includes the starting issue itself, but these are minor given the annotations and schema context.

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 only one parameter, issueId, and no description in the schema (0% coverage). The description does not explicitly document the parameter, but the tool name and the context of tracing relations make it reasonably clear that issueId identifies the starting issue. This is adequate for a single self-explanatory parameter, but the description misses the chance to explicitly say 'starting from the given issue.'

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 names a specific verb ('Trace') and a specific resource ('blocks/blocked_by relations'), and further defines the scope as recursive in both directions, returning full upstream and downstream chains. This clearly distinguishes it from the sibling getIssueTree, which handles parent/subtask hierarchy and other relation types.

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?

The description explicitly tells the agent when to use this tool versus an alternative: 'Use getIssueTree for parent/subtask hierarchy and other direct relation types.' It also scopes its own applicability to exactly blocks/blocked_by relations, leaving no ambiguity about when to select it.

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