redmine_search_issues
Search and filter Redmine issues by subject, project, status, or saved query with pagination support.
Instructions
Search/list issues with optional filters and pagination.
Args:
query: substring on issue subject (Redmine subject=~ filter).
Empty for unfiltered.
project: optional numeric id or identifier slug.
status: optional id, name, or one of Redmine's special tokens
("open", "closed", "*"). Lower-case tokens are
passed through; named statuses (e.g. "Closed") resolve
via the cache.
query_id: optional Redmine saved query id (numeric). When set,
invokes the saved query and merges any other filters (status,
project, etc.) on top per Redmine's standard semantics.
0 (default) means no saved query.
limit: page size (capped at 100).
offset: skip the first N results.
Returns {issues, total_count, limit, offset, query}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | No | ||
| offset | No | ||
| status | No | ||
| project | No | ||
| query_id | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |