Skip to main content
Glama

Initialize Scrumban Board

initialize_board
Idempotent

Use this when a brand-new user has no board yet — creates the default four columns (Backlog, Todo, Doing, Done). Idempotent: safe to call when columns already exist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already carry idempotentHint=true and destructiveHint=false, so the description's job is to add context. It does so by specifying what idempotency means here: 'safe to call when columns already exist.' It also states the exact columns created, which goes beyond the annotation flags. No contradiction with 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?

Two sentences, zero wasted words. The usage condition is front-loaded, followed by the idempotency guarantee. Every clause earns its place, and the structure is easy for an agent to parse quickly.

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

Completeness5/5

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

For a parameterless tool with no output schema, the description fully covers purpose, when to invoke it, and the safety of repeated calls. An agent has everything needed to decide whether to call it and what to expect. No gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With zero parameters and 100% schema coverage (trivially), the description has no parameter burden. Baseline for 0 params is 4. The description doesn't need to explain parameters, and it adds relevant context about the tool's behavior instead.

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 states a specific verb ('initialize') and resource ('board'), and defines the scope: creates the default four columns (Backlog, Todo, Doing, Done). It distinguishes this from siblings like list_columns or get_board_state by specifying the condition 'brand-new user has no board yet', so an agent can tell exactly when this tool applies.

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?

The opening 'Use this when a brand-new user has no board yet' gives an explicit trigger condition. It doesn't name alternatives or say when not to use it, but the idempotent note implies it's safe even if columns exist, which covers the typical edge case. A clear usage context is present, though a brief mention of checking board state first could have been stronger.

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.

Resources