Skip to main content
Glama

List Boards Tool

retro.boards.list
Read-only

Returns retrospectives (boards) of a team, newest first. Unfinished boards are included unless finished_only is set — otherwise check the is_finished flag. Filters by period via since/until. Pass team_id when several teams are available; with a single team it can be omitted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sinceNoOnly boards created on or after this date (ISO 8601, for example 2026-01-01).
untilNoOnly boards created on or before this date (ISO 8601).
team_idNoTeam to list boards for. Required when more than one team is available — call retro.teams.list first.
finished_onlyNoReturn only finished retrospectives. Default: false, unfinished boards are included.

TDQS

A4.1/5.0
Behavior5/5

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

Beyond the readOnlyHint annotation, the description discloses sorting order ('newest first'), default inclusion of unfinished boards, the meaning of finished_only, and the is_finished flag in responses. It also clarifies team_id requirements, adding behavioral context.

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?

Three sentences, with the core purpose in the first sentence. Each sentence provides distinct useful information without 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?

Covers ordering, filtering, unfinished board behavior, and team_id condition. It also hints at the response containing is_finished. Though there's no output schema, the description does a good job for a list tool.

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?

All four parameters are documented in the schema (100% coverage). The description adds a small insight about team_id being conditional ('with a single team it can be omitted'), but largely relies on the schema's existing descriptions.

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 clearly states 'Returns retrospectives (boards) of a team, newest first', which specifies both the resource and ordering. It also notes inclusion of unfinished boards, distinguishing it from a generic list tool, though it doesn't explicitly contrast with retro.boards.search.

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

Usage Guidelines4/5

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

It gives clear context about when to include team_id ('Pass team_id when several teams are available') and how to filter by period via since/until. No explicit mention of alternatives like retro.boards.search, but the conditional guidance for team_id is specific.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with overlapping tools like retro.actions.list and retro.board.actions.list explicitly differentiated in descriptions. The naming hierarchy (domain.resource.subresource.verb) helps keep properties separate.

Naming Consistency5/5

Tools follow a consistent dot-separated resource-verb pattern, with singular/plural usage following standard collection vs. single-resource conventions (e.g., games.list vs. game.get). All verbs are lowercase with underscores, making the surface predictable.

Tool Count2/5

With 29 tools spanning two distinct domains (poker planning and retrospectives), the surface feels heavy and may overwhelm users. The calibration suggests 25+ is excessive, and splitting into separate servers could improve focus.

Completeness3/5

The tool set covers most management tasks for both poker games and retrospectives, but lacks a core operation for adding messages/cards to a board, which is essential for a retro tool. Also, no board creation or deletion tools, leaving some lifecycle operations incomplete.

Resources