get_story
Retrieve a single story's full markdown content and metadata, including title, status, epic, and path. Optionally exclude the '## Notes' section to focus on current status, goal, or acceptance criteria.
Instructions
Get the full markdown content and metadata for a single story. Returns {story_id, title, status, epic_id, path, content} where content is the raw markdown of the story file. Set include_notes=false to omit the '## Notes' section (and everything after it) from content — use this when you only need current status, goal, or acceptance criteria and want to avoid paying for a long accumulated note history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| story_id | Yes | Story ID to retrieve, e.g. STORY-047 | |
| include_notes | No | Set to false to exclude the '## Notes' section from the returned content. Defaults to true (full content, unchanged behaviour). |