Skip to main content
Glama

list_boards

Read-onlyIdempotent

Retrieve a list of boards, optionally filtered by project. Returns board items with pagination support; limits results to 100 per request.

Instructions

List boards, optionally narrowed to a project. Returns items plus has_more; limit is capped at 100.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
project_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv0.2.1
    • addedOutput schema / additionalProperties
      Added value: +true
    • removedOutput schema / properties
      Removed value: -{
      -  "result": {
      -    "items": {
      -      "additionalProperties": true,
      -      "type": "object"
      -    },
      -    "title": "Result",
      -    "type": "array"
      -  }
      -}
    • removedOutput schema / required
      Removed value: -[
      -  "result"
      -]
    • changedOutput schema / title
      Previous value: -"list_boardsOutput"New value: +"list_boardsDictOutput"
  2. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, destructiveHint. Description adds extra context: returns structure (items plus has_more) and limit cap at 100, which is useful beyond annotations.

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?

Single sentence that efficiently conveys main purpose, optional filter, return fields, and a constraint. No wasted words.

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 output schema exists, description's mention of 'items plus has_more' is sufficient for pagination context. Could include ordering or error info, but overall adequate for a read-only list tool with simple parameters.

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 coverage is 0%, but parameter names (limit, offset, project_id) are mostly self-explanatory. Description adds that limit is capped at 100 and project_id narrows to a project, providing some semantics beyond schema.

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?

Description states the verb 'List' and resource 'boards', with optional narrowing to a project. Clearly distinguishes from siblings like list_projects (lists projects) and get_board (single board).

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?

No explicit guidance on when to use list_boards vs alternatives. The description implies it for listing boards, but lacks when-not-to-use or comparison with siblings like get_board for single boards.

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