redmine_search_issues
Search Redmine issues with flexible filters for project, status, assignee, author, tracker, priority, date ranges, and free text. Returns paginated summary results to help you find relevant issues.
Instructions
Search Redmine issues with flexible filters. Filter by project, status, author, assignee, tracker, priority, free-text, and date ranges (created/updated). Supports offset for pagination through total_count. Returns a summary list -- use redmine_get_issue for full details. NOTE: author/assigned_to/updated_by accept 'me' or a numeric user ID -- display names like 'Yuko Matsui' will fail (Redmine API returns 500). Use redmine_find_user to resolve a name to an ID first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Sort field:direction (e.g. 'updated_on:desc', 'priority:desc', 'created_on:asc', 'id:asc') | updated_on:desc |
| limit | No | Max results to return (default: 25, max: 100) | |
| query | No | Free-text search query (searches subject and description) | |
| author | No | Filter by issue author: 'me' or a numeric user ID. Use redmine_find_user to resolve a name. | |
| offset | No | Skip this many results -- use with limit to paginate. e.g. limit=100, offset=100 returns results 101-200. | |
| status | No | Filter by status: 'open', 'closed', '*' (all), or a specific status name | open |
| tracker | No | Filter by tracker name (e.g. 'Bug', 'Feature', 'Task') | |
| priority | No | Filter by priority name (e.g. 'High', 'Normal', 'Low') | |
| project_id | No | Project identifier (e.g. 'panama', 'bunkyodo') or numeric ID | |
| updated_by | No | Filter by issues that this user has updated (commented on or changed): 'me' or a numeric user ID. | |
| assigned_to | No | Filter by assignee: 'me' or a numeric user ID. Use redmine_find_user to resolve a name. | |
| created_since | No | Only issues created on or after this date (YYYY-MM-DD) | |
| created_until | No | Only issues created on or before this date (YYYY-MM-DD). Combine with created_since for a range. | |
| updated_since | No | Only issues updated on or after this date (YYYY-MM-DD) | |
| updated_until | No | Only issues updated on or before this date (YYYY-MM-DD). Combine with updated_since for a range. |