list_stories
List stories from your project backlog, filtered by epic, status, or story type.
Instructions
List stories from the project index, optionally filtered by epic, status, or type. Returns an array of {story_id, title, status, epic_id, story_type} objects. With no filters, returns all stories across all epics. Other tools in this server: get_story, get_index_summary, create_epic, create_story, set_story_status, set_epic_status, add_story_note, set_acceptance_criteria, check_acceptance_criterion, complete_story, bulk_update_stories, bulk_update_epics, bulk_update_acceptance_criteria, groom_epic, reorder_backlog.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | Optional status to filter by. Valid values: draft, in-progress, done, blocked. When provided, only stories with this status are returned. | |
| epic_id | No | Optional epic ID to filter by (e.g. EPIC-003). When provided, only stories belonging to this epic are returned. | |
| story_type | No | Optional story type to filter by. Valid values: feature, bug, chore, spike. When provided, only stories of this type are returned. |