get_user_merge_requests
Retrieve merge requests for a specific GitLab user as author or assignee, with filtering by state, project, and pagination support.
Instructions
Get merge requests for a specific user (as author or assignee) - uses proper GraphQL filtering
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Username to find merge requests for (e.g., "cdhanlon") | |
| role | No | Whether to find MRs authored by or assigned to the user | author |
| state | No | Filter by MR state (opened, closed, merged, all) | opened |
| projectPath | No | Optional: limit search to a specific project | |
| first | No | Number of merge requests to retrieve | |
| after | No | Cursor for pagination | |
| userCredentials | No | Your GitLab credentials (optional - uses shared token if not provided) |