List Redmine Issues
redmine_list_issuesList and filter Redmine issues by project, status, assignee, date, and more. Retrieve compact or full details with custom column selection, sorting, and pagination.
Instructions
List and filter issues from Redmine.
Args:
project_id, tracker_id, status_id, assigned_to_id, author_id, priority_id: Filters
subject: Search in subject (partial match)
parent_id: Filter by parent issue ID ("~" for root issues)
updated_on, created_on: Date filters (e.g., ">=2024-01-01")
sort: Sort (e.g., "updated_on:desc")
view: "compact" (default, saves tokens: ID/Subject/Status/Priority/Assignee) or "full" (adds Tracker/Done)
fields: Override columns, e.g. ["id","subject","status","due_date"]. Available: id, tracker, subject, status, priority, assigned_to, done_ratio, project, updated_on, due_date, author
limit / offset: Pagination
User preferences: none saved yet. The first time you help this user, ask once which Redmine projects they actually work on (suggest candidates via redmine_get_current_user with include_memberships=true and recent issues assigned to them), then save with redmine_save_preferences. Do not ask on later sessions — the saved answer replaces this hint (review anytime via redmine_get_my_context).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort field, e.g. 'updated_on:desc' | |
| view | No | Output mode: compact (fewer columns) or full | compact |
| limit | No | Max results to return | |
| fields | No | Custom columns to show, e.g. ['id','subject','status','due_date'] | |
| offset | No | Pagination offset | |
| subject | No | Search in subject (partial match) | |
| author_id | No | Author user ID or 'me' | |
| parent_id | No | Filter by parent issue ID (e.g. '123' or '~' for root issues) | |
| status_id | No | Status filter: 'open', 'closed', '*', or numeric ID | |
| created_on | No | Created date filter, e.g. '>=2024-01-01' | |
| project_id | No | Project ID or identifier | |
| tracker_id | No | Tracker ID | |
| updated_on | No | Updated date filter, e.g. '>=2024-01-01' | |
| priority_id | No | Priority ID | |
| assigned_to_id | No | Assignee user ID or 'me' |