MCP Atlassian

by sooperset
Verified

jira_get_agile_boards

Retrieve Jira agile boards by name, project key, or type using the MCP Atlassian server. Supports fuzzy search and pagination for efficient board management.

Instructions

Get jira agile boards by name, project key, or type

Input Schema

NameRequiredDescriptionDefault
board_nameNoThe name of board, support fuzzy search
board_typeNoThe type of jira board (e.g., 'scrum', 'kanban')
limitNoMaximum number of results (1-50)
project_keyNoJira project key (e.g., 'PROJ-123')
startNoStart index of board

Input Schema (JSON Schema)

{ "properties": { "board_name": { "description": "The name of board, support fuzzy search", "type": "string" }, "board_type": { "description": "The type of jira board (e.g., 'scrum', 'kanban')", "type": "string" }, "limit": { "default": 10, "description": "Maximum number of results (1-50)", "maximum": 50, "minimum": 1, "type": "number" }, "project_key": { "description": "Jira project key (e.g., 'PROJ-123')", "type": "string" }, "start": { "default": 0, "description": "Start index of board", "type": "number" } }, "type": "object" }
ID: kc33m1kh5m