confluence-mcp

by zereight
Verified

get_user_issues

Retrieve all Jira issues assigned to or reported by a specific user on a board, with optional filters for issue status and association type. Simplify issue tracking and management for targeted users.

Instructions

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" }
ID: p7fnmpaukj