MCP Libraries
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

ParameterTypeRequiredDescription
maxResultsnumberNoMaximum results to return (default: 50)
startAtnumberNoStarting 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 issues
  • issues - Array of issue objects with summary, status, priority, etc.

Notes

  • Issues are sorted by updated date in descending order
  • Only returns issues where the current user is the assignee
  • Useful for personal task management and daily standups

On this page