MCP Atlassian

by sooperset
Verified

jira_get_board_issues

Retrieve all issues associated with a specific Jira board using a JQL query. Specify fields to include, expand responses, and set result limits for efficient issue tracking and management.

Instructions

Get all issues linked to a specific board

Input Schema

NameRequiredDescriptionDefault
board_idYesThe id of the board (e.g., '1001')
expandNoFields to expand in the response (e.g., 'version', 'body.storage')version
fieldsNoComma-separated fields to return in the results. Use '*all' for all fields, or specify individual fields like 'summary,status,assignee,priority'*all
jqlYesJQL query string (Jira Query Language). Examples: - Find Epics: "issuetype = Epic AND project = PROJ" - Find issues in Epic: "parent = PROJ-123" - Find by status: "status = 'In Progress' AND project = PROJ" - Find by assignee: "assignee = currentUser()" - Find recently updated: "updated >= -7d AND project = PROJ" - Find by label: "labels = frontend AND project = PROJ" - Find by priority: "priority = High AND project = PROJ"
limitNoMaximum number of results (1-50)
startNoStart index of issue

Input Schema (JSON Schema)

{ "properties": { "board_id": { "description": "The id of the board (e.g., '1001')", "type": "string" }, "expand": { "default": "version", "description": "Fields to expand in the response (e.g., 'version', 'body.storage')", "type": "string" }, "fields": { "default": "*all", "description": "Comma-separated fields to return in the results. Use '*all' for all fields, or specify individual fields like 'summary,status,assignee,priority'", "type": "string" }, "jql": { "description": "JQL query string (Jira Query Language). Examples:\n- Find Epics: \"issuetype = Epic AND project = PROJ\"\n- Find issues in Epic: \"parent = PROJ-123\"\n- Find by status: \"status = 'In Progress' AND project = PROJ\"\n- Find by assignee: \"assignee = currentUser()\"\n- Find recently updated: \"updated >= -7d AND project = PROJ\"\n- Find by label: \"labels = frontend AND project = PROJ\"\n- Find by priority: \"priority = High AND project = PROJ\"", "type": "string" }, "limit": { "default": 10, "description": "Maximum number of results (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "start": { "default": 0, "description": "Start index of issue", "type": "number" } }, "required": [ "board_id", "jql" ], "type": "object" }
ID: kc33m1kh5m