Skip to main content
Glama
spranab

Project Tracker MCP Server

by spranab

create_story

Create a new story within an epic by providing the parent epic ID and title, then set optional status, priority, description, and tracked hours.

Instructions

Create a new story within an epic

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the story
statusNoCurrent status of the storytodo
epic_idYesUUID of the parent epic
priorityNoPriority level of the storymedium
descriptionNoDetailed description of the story
actual_hoursNoActual hours spent on the story
estimated_hoursNoEstimated hours to complete the story

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are supplied, so the description carries the full behavioral burden. It implies a write operation but says nothing about permissions, what happens if epic_id does not resolve, whether defaults are applied, or what side effects occur on the epic.

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?

A single front-loaded sentence with zero filler and the resource named first. It is efficient, though the terseness borders on under-specification for a 7-parameter mutation tool.

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?

There is no output schema and no annotations, so the description must cover behavior and returns; it does neither, leaving an agent unaware of what the created story looks like or what identifiers come back.

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 description coverage is 100%, so every parameter including enums and defaults is already documented in the schema; the description adds nothing beyond the loose hint that epic_id links to a parent epic. 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 ('Create') and resource ('a new story') plus its containment scope ('within an epic'). It does not, however, differentiate itself from nearby siblings like create_issue or create_epic, which an agent must infer from resource names alone.

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 when-to-use guidance, no prerequisites (e.g. the parent epic must already exist), and does not point to update_story or create_issue as alternatives. Usage is only implied by the tool name.

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