confluence-mcp

get_user_issues

Get all issues assigned to or reported by a specific user in a board

Input Schema

NameRequiredDescriptionDefault
boardIdYesJira board ID
statusNoFilter by issue statusall
typeNoType of user association with issuesassignee
usernameYesUsername to search issues for

Input Schema (JSON Schema)

{ "properties": { "boardId": { "description": "Jira board ID", "type": "string" }, "status": { "default": "all", "description": "Filter by issue status", "enum": [ "open", "in_progress", "done", "all" ], "type": "string" }, "type": { "default": "assignee", "description": "Type of user association with issues", "enum": [ "assignee", "reporter" ], "type": "string" }, "username": { "description": "Username to search issues for", "type": "string" } }, "required": [ "boardId", "username" ], "type": "object" }