Skip to main content
Glama

Get Board Summary

get_board_summary

Retrieve a board's summary showing lists, card counts, and labels using its board ID.

Instructions

Get a board summary with its lists, card counts, and labels.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
boardIdYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/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 behavioral disclosure burden. It does convey that the response includes card counts rather than full card objects and labels, which is useful. However, it does not explicitly state read-only behavior, potential exclusions, or any other operational traits beyond the output contents.

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

Conciseness5/5

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

A single, front-loaded sentence states the action and the key contents of the result. Every word earns its place, with no filler or repetition of schema information.

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?

With a simple single-parameter schema and an output schema present, the description covers the core information an agent needs to invoke the tool and interpret the result. The only meaningful gap is the absence of explicit usage distinction among the many board-related siblings.

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?

The schema has 0% description coverage for the single boardId parameter. The description does not elaborate on the parameter, but the parameter name is self-explanatory in context and the tool description makes clear that a board is being summarized. This is adequate, though the description adds no direct parameter-level meaning.

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

Purpose5/5

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

The description uses a specific verb ('Get'), names the exact resource ('board summary'), and lists the included contents: lists, card counts, and labels. This clearly distinguishes it from siblings like get_board, get_all_lists, and get_all_cards.

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 word 'summary' implies this is for an aggregated overview rather than full board details, but the description gives no explicit when-to-use guidance or alternatives. An agent must infer from the sibling names and tool name.

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