mcp-jira-stdioTools Reference
jira_get_my_issues
Get issues assigned to the current user
jira_get_my_issues
Retrieve issues assigned to the current (authenticated) user, sorted by last updated.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
maxResults | number | No | Maximum results to return (default: 50) |
startAt | number | No | Starting index for pagination |
Example
{
"tool": "jira_get_my_issues",
"arguments": {}
}With Pagination
{
"tool": "jira_get_my_issues",
"arguments": {
"maxResults": 20,
"startAt": 0
}
}Response
Returns issues assigned to the current user:
total- Total number of assigned issuesissues- Array of issue objects with summary, status, priority, etc.
Notes
- Issues are sorted by
updateddate in descending order - Only returns issues where the current user is the assignee
- Useful for personal task management and daily standups