Skip to main content
Glama

jira_get_board_issues

Retrieve issues from a Jira board filtered by JQL, with pagination and field selection.

Instructions

Get all issues linked to a specific board filtered by JQL.

Args: ctx: The FastMCP context. board_id: The ID of the board. jql: JQL query string to filter issues. fields: Comma-separated fields to return. start_at: Starting index for pagination. limit: Maximum number of results. expand: Optional fields to expand.

Returns: JSON string representing the search results including pagination info.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
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)
expandNoOptional fields to expand in the response (e.g., 'changelog').version
fieldsNoComma-separated fields to return in the results. Use '*all' for all fields, or specify individual fields like 'summary,status,assignee,priority'status,versions,description,created,priority,reporter,fixVersions,updated,labels,issuetype,assignee,summary
board_idYesThe id of the board (e.g., '1001')
start_atNoStarting index for pagination (0-based)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.9.0
    • changedInput schema / properties / fields / default
      Previous value: -"reporter,issuetype,status,labels,created,summary,assignee,updated,versions,description,priority,fixVersions"New value: +"status,versions,description,created,priority,reporter,fixVersions,updated,labels,issuetype,assignee,summary"
  2. Addedv0.7.0
  3. Removedv0.6.2-rc.1
  4. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It discloses that the tool returns a JSON string with pagination info, which is useful. It does not disclose rate limits, authentication requirements, or what happens with invalid JQL, but for a read-only retrieval tool, the pagination and return format disclosure is adequate. The description does not contradict any annotations since none exist.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded with the core purpose in the first sentence. The Args and Returns sections are structured and each line earns its place. It is slightly verbose with the full parameter list repeated from the schema, but this is a minor redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists and the input schema covers all parameters, the description is complete enough for an agent to call the tool correctly. It explains the return format (JSON string with pagination info) and the filtering mechanism (JQL). It could mention that board_id must be a board ID from jira_get_agile_boards, but this is a minor gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all six parameters thoroughly, including JQL examples and field lists. The description adds minimal semantic value beyond restating parameter names. Baseline 3 is appropriate because the schema does the heavy lifting and the description does not need to compensate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'Get all issues linked to a specific board filtered by JQL.' This clearly distinguishes it from jira_get_sprint_issues and jira_get_project_issues, which target different scopes. It could be slightly stronger by explicitly naming a sibling alternative, but the core purpose is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage context: it is for retrieving board issues with JQL filtering, which is a clear context. However, it does not explicitly state when to use this tool versus jira_search, jira_get_project_issues, or jira_get_sprint_issues. The JQL examples in the schema provide some guidance on what queries are possible, but no explicit exclusions or alternative routing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools