redmine_search
Perform full-text search across all Redmine resource types including issues, wiki pages, news, changesets, messages, projects, and documents. Filter results by project, resource types, titles, or attachments.
Instructions
Full-text search across all Redmine resource types.
Searches issues, wiki pages, news, changesets, messages, projects,
and documents. Complements redmine_search_issues which only
covers issues with structured filters.
Args:
query: search string (required, non-empty).
project: optional project id or slug to scope the search.
Empty for global search.
resource_types: optional list of resource types to include
(e.g. ["issues", "wiki_pages"]). Empty searches all.
Allowed: issues, news, documents, changesets,
wiki_pages, messages, projects.
all_words: if True (default), match all words; if False, any.
titles_only: if True, only search titles.
open_issues: if True, only return open issues (ignored for
other resource types).
attachments: "0" (description only), "1" (description +
attachments), "only" (attachments only).
limit: page size (capped at 100).
offset: skip the first N results.
Returns {results, total_count, limit, offset}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| offset | No | ||
| project | No | ||
| all_words | No | ||
| attachments | No | 0 | |
| open_issues | No | ||
| titles_only | No | ||
| resource_types | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |