Vestaboard MCP Server

Vestaboard MCP Server

Enables control of Vestaboard displays through cloud and local APIs, allowing users to send messages, read current displays, and manage animation effects. It provides tools for automatic text-to-character-code formatting and supports various transition strategies for message display.

Category
Visit Server

README

Vestaboard MCP Server

A Model Context Protocol server for controlling Vestaboard displays via both cloud and local APIs.

Features

  • Cloud API Support: Send messages, read current display, manage transitions
  • Local API Support: Direct control of devices on your network
  • Message Formatting: Convert text to character codes automatically
  • Animation Effects: Animate message display with multiple strategies
  • Environment Configuration: Use .env files for API credentials (minimal deps)
  • Type Safe: Full Python type hints with mypy support

Installation

Prerequisites

  • Python 3.10+
  • A Vestaboard device

Setup

# Clone and install
git clone https://github.com/lintility/vestaboard-mcp.git
cd vestaboard-mcp
pip install -e .

# Configure credentials
cp src/.env.example .env

Edit .env with your API credentials:

  • VESTABOARD_CLOUD_TOKEN: Get from https://www.vestaboard.com/account/integrations
  • VESTABOARD_LOCAL_ENABLEMENT_TOKEN: Sent via email by Vestaboard
  • VESTABOARD_LOCAL_API_KEY: Auto-populated after enabling local API (optional)

Usage

Run the Server

python -m src.server

Configure with Claude

Add to ~/.config/claude/mcp.json:

{
  "mcpServers": {
    "vestaboard": {
      "command": "python",
      "args": ["-m", "src.server"],
      "cwd": "/path/to/vestaboard-mcp",
      "env": {
        "VESTABOARD_CLOUD_TOKEN": "your_token",
        "VESTABOARD_LOCAL_API_KEY": "your_local_key"
      }
    }
  }
}

Available Tools

Cloud API

  • cloud_read_message: Get current display
  • cloud_send_message: Send text or character codes
  • cloud_format_message: Convert text to character codes
  • cloud_get_transition: Get transition settings
  • cloud_set_transition: Set animation effects (wave, drift, curtain, classic)

Local API

  • local_enable_api: Activate local API (one-time setup)
  • local_send_message: Send message with optional animation
  • local_read_message: Read current display

Project Structure

vestaboard-mcp/
├── src/
│   ├── server.py           # MCP server implementation
│   ├── vestaboard.py       # API client classes
│   └── .env.example        # Configuration template
├── tests/
│   └── test_server.py      # Test suite
├── pyproject.toml          # Dependencies and config
└── README.md               # This file

Development

# Run tests
pytest tests/

# Format code
black src/ tests/

# Lint
ruff check src/ tests/

# Type check
mypy src/

Dependencies

Core:

  • mcp>=0.1.0 - Model Context Protocol SDK
  • httpx>=0.24.0 - Async HTTP client
  • python-dotenv>=1.0.0 - Environment configuration

Dev:

  • pytest>=7.4.0 - Testing
  • pytest-asyncio>=0.21.0 - Async test support
  • black>=23.0.0 - Code formatting
  • ruff>=0.0.275 - Linting
  • mypy>=1.0.0 - Type checking

API Documentation

Resources

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured