Read, render, and write your Vestaboard from the terminal — with a board preview and character-code table no other Vestaboard tool ships.
Wraps the Vestaboard Cloud Read/Write API (read the current message, send text or character-code messages, control transitions) plus the VBML text formatter on its own host. The novel 'message preview' renders the live board as readable text, and 'characters' prints the code table so you can build character-array payloads by hand.
Learn more at Vestaboard.
Created by @cathrynlavery (Cathryn Lavery).
The recommended path installs both the vestaboard-pp-cli binary and the pp-vestaboard agent skill (Claude Code, Codex, Cursor, Gemini CLI, GitHub Copilot, and other agents supported by the upstream skills CLI) in one shot:
npx -y @mvanhorn/printing-press-library install vestaboardFor CLI only (no skill):
npx -y @mvanhorn/printing-press-library install vestaboard --cli-onlyFor skill only — installs the skill into the same agents as the default command above, but skips the CLI binary (use this to update or reinstall just the skill):
npx -y @mvanhorn/printing-press-library install vestaboard --skill-onlyTo constrain the skill install to one or more specific agents (repeatable — agent names match the skills CLI):
npx -y @mvanhorn/printing-press-library install vestaboard --agent claude-code
npx -y @mvanhorn/printing-press-library install vestaboard --agent claude-code --agent codexIf npx isn't available (no Node, offline), install the CLI directly via Go (requires Go 1.26.4 or newer):
go install github.com/mvanhorn/printing-press-library/library/devices/vestaboard/cmd/vestaboard-pp-cli@latestThis installs the CLI only — no skill.
Download a pre-built binary for your platform from the latest release. On macOS, clear the Gatekeeper quarantine: xattr -d com.apple.quarantine <binary>. On Unix, mark it executable: chmod +x <binary>.
Install the CLI binary first. The installer writes binaries to a per-user managed bin directory by default: $HOME/.local/bin on macOS/Linux and %LOCALAPPDATA%\Programs\PrintingPress\bin on Windows.
npx -y @mvanhorn/printing-press-library install vestaboard --cli-onlyThen install the focused Hermes skill.
From the Hermes CLI:
hermes skills install mvanhorn/printing-press-library/cli-skills/pp-vestaboard --forceInside a Hermes chat session:
/skills install mvanhorn/printing-press-library/cli-skills/pp-vestaboard --forceRestart the Hermes session or gateway if the newly installed skill is not visible immediately.
Install both the CLI binary and the focused OpenClaw skill. The installer defaults binaries to a per-user bin directory ($HOME/.local/bin on macOS/Linux, %LOCALAPPDATA%\Programs\PrintingPress\bin on Windows):
npx -y @mvanhorn/printing-press-library install vestaboard --agent openclawRestart the OpenClaw session or gateway if the newly installed skill is not visible immediately.
This CLI ships an MCPB bundle — Claude Desktop's standard format for one-click MCP extension installs (no JSON config required).
To install:
- Download the
.mcpbfor your platform from the latest release. - Double-click the
.mcpbfile. Claude Desktop opens and walks you through the install. - Fill in
VESTABOARD_API_KEYwhen Claude Desktop prompts you.
Requires Claude Desktop 1.0.0 or later. Pre-built bundles ship for macOS Apple Silicon (darwin-arm64) and Windows (amd64, arm64); for other platforms, use the manual config below.
Manual JSON config (advanced)
If you can't use the MCPB bundle (older Claude Desktop, unsupported platform), install the MCP binary and configure it manually.
go install github.com/mvanhorn/printing-press-library/library/devices/vestaboard/cmd/vestaboard-pp-mcp@latestAdd to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"vestaboard": {
"command": "vestaboard-pp-mcp",
"env": {
"VESTABOARD_API_KEY": "<your-key>"
}
}
}
}Create a Cloud API token in the API tab on web.vestaboard.com (or the mobile app under Settings → Advanced Settings), then run 'vestaboard-pp-cli auth set-token '. The token is sent only to cloud.vestaboard.com; the VBML formatter on vbml.vestaboard.com takes no credentials.
# check config and connectivity before sending anything
vestaboard-pp-cli doctor --dry-run
# see the board's current contents as readable text
vestaboard-pp-cli message preview
# format text into a character-code grid (no auth, second host)
vestaboard-pp-cli vbml --message "HELLO" --json
# put a message on the board (1 msg / 15s rate limit)
vestaboard-pp-cli message send --body-json '{"text":"hello"}'
These capabilities aren't available in any other tool for this API.
-
message preview— See what's on your Vestaboard right now as readable text instead of a raw integer grid.Reach for this before composing or sending — it is the only way to know the board's current contents without decoding codes by hand.
vestaboard-pp-cli message preview --json
-
characters— Print the full Vestaboard character-code table (code to glyph) for hand-building a character-array message.Use this when constructing a 'message send' character payload so you map glyphs to the right integer codes.
vestaboard-pp-cli characters --json
vestaboard-pp-cli message previewDecodes the live layout into a bordered block of glyphs you can read.
vestaboard-pp-cli message get --agent --select currentMessage.id,currentMessage.layoutPulls just the id and raw character grid for an agent without the surrounding envelope.
vestaboard-pp-cli vbml --message "GM" --jsonConvert text to a character-code grid on the VBML host, then pass it to 'message send --body-json'.
vestaboard-pp-cli transition set --transition wave --transition-speed gentleChange the flip animation style and speed.
Run vestaboard-pp-cli --help for the full command reference and flag list.
The message currently shown on the Vestaboard.
vestaboard-pp-cli message get- Read the message currently displayed on the board. The layout is a JSON-encoded 2D array of character codes whose dimensions depend on the board type.vestaboard-pp-cli message send- Send a new message to the board. Provide --text (plain text / VBML) or --characters (a JSON 2D array of character codes). Rate limited to 1 message per 15 seconds.
Transition animation settings for the board (Flagship and Note devices).
vestaboard-pp-cli transition get- Get the current transition style and speed.vestaboard-pp-cli transition set- Set the transition style and speed. Both fields are required.
Vestaboard Markup Language (VBML) text formatting service.
vestaboard-pp-cli vbml- Convert a text string into a 2D array of Vestaboard character codes.
# Human-readable table (default in terminal, JSON when piped)
vestaboard-pp-cli message get
# JSON for scripting and agents
vestaboard-pp-cli message get --json
# Filter to specific fields
vestaboard-pp-cli message get --json --select id,name,status
# Dry run — show the request without sending
vestaboard-pp-cli message get --dry-run
# Agent mode — JSON + compact + no prompts in one flag
vestaboard-pp-cli message get --agentThis CLI is designed for AI agent consumption:
- Non-interactive - never prompts, every input is a flag
- Pipeable -
--jsonoutput to stdout, errors to stderr - Filterable -
--select id,namereturns only fields you need - Previewable -
--dry-runshows the request without sending - Explicit retries - add
--idempotentto create retries when a no-op success is acceptable - Confirmable -
--yesfor explicit confirmation of destructive actions - Piped input - write commands can accept structured input when their help lists
--stdin - Agent-safe by default - no colors or formatting unless
--human-friendlyis set
Exit codes: 0 success, 2 usage error, 3 not found, 4 auth error, 5 API error, 7 rate limited, 10 config error.
vestaboard-pp-cli doctorVerifies configuration, credentials, and connectivity to the API.
Config file: ~/.config/vestaboard-pp-cli/config.toml
Static request headers can be configured under headers; per-command header overrides take precedence.
Environment variables:
| Name | Kind | Required | Description |
|---|---|---|---|
VESTABOARD_API_KEY |
per_call | No | Set to your API credential. |
If you use agentcookie to sync secrets across machines, this CLI auto-adopts agentcookie-managed credentials with no extra setup. When the daemon writes to this CLI's config, vestaboard-pp-cli doctor reports agentcookie: detected and auth-status labels the source as agentcookie. Skip this section if you don't use agentcookie - the CLI works the same as any other.
Authentication errors (exit code 4)
- Run
vestaboard-pp-cli doctorto check credentials - Verify the environment variable is set:
echo $VESTABOARD_API_KEYNot found errors (exit code 3) - Check the resource ID is correct
- Run the
listcommand to see available items
- Messages are dropped or 429-rate-limited — The board accepts at most 1 message per 15 seconds; space out 'message send' calls.
- 'message preview' renders a blank or wrong grid — Board size varies by device (Flagship 6x22, Note 3x15); preview renders whatever the API returns. Re-run 'message get --json' to inspect the raw layout.
- 'message send' returns success but quiet hours suppress it — Add "forced": true to the body-json to override configured quiet hours.
This CLI was built by studying these projects and resources:
- vestaboard/installables — JavaScript
- vestaboard-python (ShaneBenetz) — Python
Generated by CLI Printing Press