Skip to main content
Glama

blipboard

Update Board Tool

update-board-tool

Change a Blipboard board's look without recreating it: switch to a named style preset and/or set fine-grained style overrides (fonts, tile colors, flip speed, transitions). The open display picks the change up within ~10 seconds. Layout stays immutable. Requires the board's secret pushToken.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoNew human-readable board name.
boardUrlYesThe board displayUrl returned by create-board, or its bare 21-character display token.
pushTokenYesThe board's secret push token.
stylePresetNoSwitch the board to a named style preset. Available: Vestaboard, Modern Board, Default.
styleOverridesNoFine-grained style keys merged on top of the preset, e.g. {"board.bg": "#0a0a0a", "tile.face": "#1a3a2a", "font.family": "jetbrains-mono", "tile.flip.speed": 0.08, "transition.mode": "curtain", "light.angle": 120}. Pass null for a key to remove an override. Common keys: font.family (roboto-flex|jetbrains-mono|space-mono|nerd-hacker|anton), font.weight, tile.face (hex), board.bg (hex), tile.radius, tile.flip.speed (0.05-0.6 s), transition.mode (classic|wave|drift|curtain), transition.overlap (0-1), light.angle, light.intensity.

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses the ~10-second propagation delay, the need for a secret token, and the immutability of layout. It does not cover error handling or idempotency, but it provides honest behavioral details beyond the schema.

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 three sentences, each adding value. It is front-loaded with purpose, then timing, then constraints. No redundant or verbose language.

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 the complexity (5 parameters, nested objects, no output schema), the description covers input details well and explains the propagation time. However, it does not mention the return value or error scenarios, leaving a minor gap for a complete understanding.

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?

The schema already covers all parameters (100% coverage), so baseline is 3. The description enhances meaning by explaining styleOverrides with examples, common keys, and the ability to remove overrides with null. This adds significant value beyond the 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?

The description clearly states the tool's purpose: changing a board's look without recreating it, specifying style preset and overrides. It distinguishes itself from sibling tools like create-board-tool and read-board-tool by focusing on visual updates while noting layout immutability.

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 description provides context for when to use the tool (changing look without recreation) and notes requirements like the secret pushToken and layout immutability. However, it does not explicitly state when NOT to use it or suggest alternatives beyond the sibling list.

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

A4.6/5.0
Disambiguation5/5

Each tool targets a distinct operation on Blipboard boards: create, delete, push scenes, read, and update. No overlap in functionality, agents can easily differentiate.

Naming Consistency5/5

All tools follow a consistent 'verb-board-tool' pattern (e.g., create-board-tool, push-scenes-tool), with verbs in imperative form and clear noun references.

Tool Count5/5

With 5 tools, the server covers the core actions needed for managing split-flap display boards without unnecessary duplication or missing essentials.

Completeness5/5

The tool set covers the full lifecycle: create board, read its state, push scenes, update style, and delete. No obvious gaps for the stated purpose.

Resources