Skip to main content
Glama

get_board

Retrieve details of a specific board, including its columns, by supplying the board's ID.

Instructions

Get details of a specific board including its columns.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
board_idYesThe board's widget_common_id

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.7.2
  2. Removedv0.7.0
  3. Changed2 schema fields changedv0.3.2
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / board_id / description
      Added value: +"The board's widget_common_id"
  4. First observedv0.5.0

TDQS

A3.6/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 full burden. It correctly implies a read-only operation ('Get details') but does not disclose potential side effects, authentication requirements, or error conditions. However, for a simple retrieval tool, the description adequately conveys the main behavior without contradictions. The lack of explicit read-only declaration is a minor gap, not a severe one.

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?

The description is a single, concise sentence that efficiently conveys the tool's purpose and key output detail ('including its columns'). There is no redundancy or extra text, making it well-structured and easy to parse.

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?

The description is adequate for a simple get tool. It indicates the primary purpose and even highlights that columns are included in the response. The presence of an output schema means return format details are covered elsewhere. The single parameter is documented. While it doesn't explicitly address sibling distinctions, the simplicity of the tool makes the description sufficient for an agent to call correctly.

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 input schema provides full coverage (100%) for the single parameter, with a description stating 'The board's widget_common_id'. The main description adds no extra semantic detail about the parameter beyond referencing a 'specific board'. Since schema already explains the parameter sufficiently, a baseline score of 3 is appropriate.

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 clearly states the verb 'Get' and resource 'details of a specific board', including that columns are returned. This distinguishes it from sibling tools like list_boards (which lists all boards) and get_current_board (which targets a specific current board). The 'specific' qualifier and ID parameter make the tool's purpose unambiguous.

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 explicit guidance on when to use this tool versus alternatives. No mention of conditions like 'use when you have a board ID' or exclusions like 'for simple board listing, use list_boards'. The description only states what the tool does, not when it is the preferred choice. This leaves the agent to infer usage from the parameter and sibling names.

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