List User Stories
user_story_listList user stories in a Taiga project, with optional filters for status, tags, assignee, epic, or milestone. Get paginated results with count and next-page info to navigate large backlogs efficiently.
Instructions
List user_storys, optionally filtered by the given query parameters. Response is { items, pagination } — pagination has { count, current_page, has_next } read from Taiga. Default page_size is 30. Use user_story_filters_data to discover valid status/tags/assigned_to/epic ids cheaply instead of paging through results.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | ||
| epic | No | ||
| page | No | 1-indexed page number | |
| status | No | ||
| project | Yes | Project id to scope the list to | |
| milestone | No | ||
| page_size | No | Items per page. Default 30. | |
| verbosity | No | Trims the response's fields to cut token cost. "full" (default) = every field Taiga returns. "standard" drops denormalized *_extra_info objects, *_html duplicate fields, and UI-only ordering fields. "minimal" keeps only id/ref/subject/status/assigned_to/project/is_closed. |