Skip to main content
Glama
spranab

Project Tracker MCP Server

by spranab

get_project

Retrieve a project's full details, including its epics and stories, by providing the project UUID to support planning and tracking.

Instructions

Get detailed information about a specific project including all its epics and stories

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesUUID of the project

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It usefully discloses that the response embeds nested epics and stories (behavior not visible in the input schema), but it says nothing about authorization, error cases (e.g., unknown UUID), response size, or whether the nested data is paginated.

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 front-loaded sentence with the resource and scope up front and zero filler. Nothing is redundant or buried.

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?

For a read tool with no annotations and no output schema, the description covers the gist (project plus nested epics/stories) but omits permission requirements, failure behavior, and any disambiguation from get_project_summary. Adequate but with clear gaps.

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%, so the single project_id parameter is already fully documented as a UUID in the schema. The description adds no format, constraint, or lookup-caveat details beyond that. Baseline 3 applies when the schema does the heavy lifting.

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 ('a specific project') and adds scope ('including all its epics and stories'). It is clear on its own, but it does not differentiate itself from closely related siblings such as get_project_summary, so an agent cannot be fully sure which to pick.

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?

There is no when-to-use guidance, no prerequisites, and no mention of alternatives (e.g., get_project_summary, list_projects, list_epics). The 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.