redmine_find_user
Scan Redmine issues to locate a user ID from a name fragment, yielding matches ranked by activity to bypass admin-only user lookup.
Instructions
Find a Redmine user ID by scanning recent issues for matching authors and assignees. Use this as a workaround for /users.json admin restrictions: given a name fragment (e.g. 'Toyoda', 'yoshikuni', 'Murata'), it returns matching user IDs sorted by how often they appear, so the most active match comes first. Once you have an ID, pass it to redmine_search_issues as author/assigned_to/updated_by.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name fragment to match (case-insensitive substring against the display name) | |
| scan_pages | No | How many pages of 100 recent issues to scan. Default 5 (=500 issues). Increase for rare users. |