blocker_reportFind and rank everything getting in the way in a sprint. Goes beyond the Blocked column: fuses the impediment flag, open 'is blocked by' links, hard Blocked status, stale in-progress tickets, and natural-language cues in comments ('waiting on', 'stuck', 'dependency') into one severity-ranked list. Defaults to the active sprint.Input schema{
"type": "object",
"properties": {
"boardId": {
"type": "integer",
"description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
},
"sprintId": {
"type": "integer",
"description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
burndown_analysisReconstruct the sprint burndown from the changelog: remaining work per day vs the ideal line, daily burn rate vs the rate needed to finish, and a projected completion date. This is a close approximation built from issue history, not a copy of Jira's chart. Defaults to the active sprint.Input schema{
"type": "object",
"properties": {
"boardId": {
"type": "integer",
"description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
},
"sprintId": {
"type": "integer",
"description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
jira_list_boardsList the Jira boards this account can see, with their ids. Use the id with the other tools when the account has more than one board.Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {}
} | — | | — |
jira_list_sprintsList sprints for a board with their ids, state, and dates. Pass a boardId when the account has multiple boards. Optionally filter by state.Input schema{
"type": "object",
"properties": {
"boardId": {
"type": "integer",
"description": "Board id. Optional when the account has a single board."
},
"state": {
"type": "string",
"enum": [
"active",
"closed",
"future"
],
"description": "Filter by sprint state."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
sprint_health_summaryRead of how a sprint is tracking: completion vs time elapsed, a plain-language verdict (on track / at risk / behind), scope added mid-sprint, and the specific items putting the sprint at risk (blocked, stale, unassigned). Defaults to the active sprint. Falls back to issue counts when the team does not estimate in points.Input schema{
"type": "object",
"properties": {
"boardId": {
"type": "integer",
"description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
},
"sprintId": {
"type": "integer",
"description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
standup_generatorGenerate a daily standup, grouped by assignee: what each person finished recently, what they are working on, and what is blocking them. Pasteable straight into Slack. Defaults to the active sprint and a one-day lookback (use sinceDays for Monday standups that cover the weekend).Input schema{
"type": "object",
"properties": {
"boardId": {
"type": "integer",
"description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
},
"sprintId": {
"type": "integer",
"description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
},
"sinceDays": {
"type": "integer",
"minimum": 1,
"maximum": 14,
"description": "Lookback window in days for 'recently done'. Default 1."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
velocity_trendsVelocity across recent closed sprints: committed vs completed per sprint, average velocity, commitment accuracy, predictability (how consistent the team is), the trend, and a recommended commitment for the next sprint. Pass a boardId if the account has more than one board.Input schema{
"type": "object",
"properties": {
"boardId": {
"type": "integer",
"description": "Board id. Optional when the account has a single board."
},
"count": {
"type": "integer",
"minimum": 2,
"maximum": 20,
"description": "How many recent closed sprints to analyze. Default 5."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
weekly_status_noteGenerate a stakeholder-ready weekly status note: a single RAG status, a short narrative, what was delivered this week, the top risks and blockers with owners, velocity context, and the focus for next week. Composes sprint health, blockers, and velocity into one note you can send as-is. Defaults to the active sprint.Input schema{
"type": "object",
"properties": {
"boardId": {
"type": "integer",
"description": "Board id. Optional when the account has a single board. Use jira_list_boards to find ids."
},
"sprintId": {
"type": "integer",
"description": "Sprint id. Optional: defaults to the active sprint (or the most recent closed one)."
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |