Skip to main content
Glama
spranab

Project Tracker MCP Server

by spranab

get_epic

Fetch detailed information about a specific epic and all its stories using the epic's UUID.

Instructions

Get detailed information about a specific epic including all its stories

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
epic_idYesUUID of the epic

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations exist, so the description carries the full behavioral burden. 'Get' implies a read, but it says nothing about permissions, behavior on an unknown/invalid epic_id (error vs empty), or whether the story list is paginated or truncated.

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?

One sentence, front-loaded with the verb and resource and immediately qualified by the returned scope. No filler.

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?

With no output schema, the description is the only source of return-shape information; it does say stories are included, which is valuable, but says nothing about nesting depth, pagination, or the shape of the epic fields themselves.

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?

Schema coverage is 100% and the single epic_id parameter is documented as a UUID in the schema. The description adds no format or sourcing detail beyond that, so the baseline 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?

States a specific verb (Get) and resource (epic), and adds scope detail — 'including all its stories' — which distinguishes it from get_story and list_epics. It does not name a sibling explicitly, so it lands just short of a 5.

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?

No guidance on when to use this versus list_epics, get_issue, or get_project_summary, and no stated prerequisites such as needing a valid epic UUID. Usage is only implied by the tool name and the required epic_id.

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