Skip to main content
Glama

update_board

Idempotent

Rename a board or update its description to keep project information current. This action changes board details while leaving its structure intact.

Instructions

Rename a board or change its description. Structure (columns) is changed with update_column / delete_column / reorder_columns.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoHuman-readable name
boardIdYesBoard id (from list_boards / create_board)
projectIdYesProject id (from list_projects / create_project)
descriptionNoFree-text description

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv0.13.0
    • addedInput schema / properties / boardId / description
      Added value: +"Board id (from list_boards / create_board)"
    • addedInput schema / properties / description / description
      Added value: +"Free-text description"
    • addedInput schema / properties / name / description
      Added value: +"Human-readable name"
    • addedInput schema / properties / projectId / description
      Added value: +"Project id (from list_projects / create_project)"
  2. First observedv0.7.0

TDQS

A3.9/5.0
Behavior3/5

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

The description does not add behavioral details beyond the annotations. Annotations already indicate readOnly=false, destructive=false, and idempotent=true. The description simply restates the action without mentioning side effects, permissions, or partial-update semantics.

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 concise, front-loaded with the primary purpose, and the second sentence cleanly separates scope from related tools. No unnecessary words or redundant details.

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

Completeness3/5

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

While the description is clear on the primary action, it does not explicitly state whether missing optional parameters are preserved or cleared, which is a common ambiguity for update tools. It also omits any mention of prerequisites (e.g., needing an existing board) beyond what is implied by the schema. Given the simplicity of the operation, the description is adequate but not fully comprehensive.

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 provides full coverage of all parameters with descriptions, including their sources (e.g., boardId from list_boards/create_board). The tool description does not add further semantic meaning or clarify optional/partial update behavior, so the baseline 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 tool's function: renaming a board or changing its description. It also explicitly differentiates from sibling tools for column structure changes, making its scope unambiguous.

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 indirectly indicates when to use by stating what it does and explicitly points to update_column/delete_column/reorder_columns for structural changes. It does not fully enumerate all alternative tools, but the column differentiation is the most relevant and sufficient for this context.

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