Skip to main content
Glama
hakenshi

Agentic Backlog MCP Server

by hakenshi

Get board snapshot

backlog.get_board

Retrieve a grouped board snapshot for a project to view backlog items organized by status, enabling quick project tracking.

Instructions

Returns board grouped snapshot from the running backlog API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

TDQS

C2.9/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It does disclose a read-like behavior through 'Returns', implying no mutation, and 'snapshot' suggests a point-in-time read. However, it omits any mention of authentication, failure behavior, data consistency, or side effects, so the behavioral picture is incomplete.

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 a single, front-loaded sentence that gets to the main point immediately. The phrase 'running backlog API' adds little value, but overall there is no unnecessary elaboration.

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

Completeness2/5

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

There is no output schema, so the description must fill in return-value expectations, but it only says 'board grouped snapshot' without describing what the snapshot contains or how it relates to project_id. For an agent to use it correctly, more detail about the returned data and its grouping is needed.

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

Parameters2/5

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

Schema description coverage is 0%, so the description should compensate by explaining how project_id affects the result, but it does not mention project_id at all. The schema provides only the parameter name and type, which is minimal, though 'project_id' is somewhat self-explanatory.

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 uses a specific verb ('Returns') and identifies the resource as a 'board grouped snapshot', so it is not a tautology. However, 'grouped' is not explained, and the description does not explicitly differentiate this from sibling tools like get_project or get_kanban_url.

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

Usage Guidelines2/5

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

There is no guidance about when to use this tool versus alternatives. The description does not mention any conditions, exclusions, or sibling tools, leaving the agent to infer the appropriate context from the name alone.

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