vestaboard-mcp
Enables AI assistants to display messages on a Vestaboard via text or board mode with color and symbol support.
README
Vestaboard MCP Server
Give Cursor agent the ability to display messages on your Vestaboard.
More examples: <img width="1301" height="733" alt="Screenshot 2025-09-12 at 8 22 42 AM" src="https://github.com/user-attachments/assets/993a6153-e100-483a-95a1-1244c04ec7f9" />
Features
- Text Mode: Send simple text messages that are automatically formatted and centered by Vestaboard
- Board Mode: Full control over the 6×22 character grid with precise positioning
- Color Support: Use Vestaboard's built-in color codes (Red, Orange, Yellow, Green, Blue, Violet, White, Black)
- Symbol Support: Display special characters, numbers, and punctuation
- MCP Integration: Works seamlessly with AI assistants that support the Model Context Protocol
Installation
- Clone this repository:
git clone <repository-url>
cd vestaboard-mcp
- Install dependencies:
npm install
Getting Your Vestaboard API Key
- Visit Vestaboard Developer Portal
- Sign in with your Vestaboard account
- Go to "Read/Write API" section
- Generate a new API key for your board
- Copy the key to your
.envfile
Usage
Adding to Cursor as an MCP Server
- Open Cursor Settings (Cmd/Ctrl + ,)
- Go to "Features" → "Model Context Protocol"
- Add a new MCP server by copying and pasting this JSON configuration:
{
"mcpServers": {
"vestaboard": {
"command": "npx",
"args": ["-y", "tsx", "path/to/vestaboard-mcp/index.ts"],
"env": {
"VESTABOARD_API_KEY": "YOUR_API_KEY"
}
}
}
Important:
- Replace
/absolute/path/to/vestaboard-mcpwith the actual absolute path to your cloned repository - Replace
your_vestaboard_api_key_herewith your actual Vestaboard API key
- Save the configuration and restart Cursor
Using with Cursor
Once configured, you can ask Cursor to display messages on your Vestaboard using natural language. Cursor will automatically use the display_message tool to send messages to your Vestaboard.
Examples:
- "Display 'Good Morning!' on my Vestaboard"
- "Show a colorful welcome message on the Vestaboard"
- "Put 'Meeting in 5 mins' on my Vestaboard in red"
- "Draw a minimal portrait of a Pikachu on my Vestaboard"
Text Mode (Default)
{
"message": "Hello World!",
"mode": "text"
}
Board Mode (Advanced)
{
"mode": "board",
"board": [
[0, 0, 8, 5, 12, 12, 15, 0, 23, 15, 18, 12, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
]
}
Character and Color Codes
Letters
- A-Z: 1-26
Numbers
- 0-9: 36, 27-35
Special Characters
- Blank: 0
- !: 37
- @: 38
- #: 39
- $: 40
- (: 41
- ): 42
- -: 44
- +: 46
- &: 47
- =: 48
- ;: 49
- :: 50
- ': 52
- ": 53
- %: 54
- ,: 55
- .: 56
- /: 59
- ?: 60
- °: 62
Colors
- Red: 63
- Orange: 64
- Yellow: 65
- Green: 66
- Blue: 67
- Violet: 68
- White: 69
- Black: 70
- Filled: 71
Project Structure
vestaboard-mcp/
├── code.ts # Vestaboard character and color code mappings
├── index.ts # Main MCP server implementation
├── sendMessage.js # Test utility for sending messages
├── package.json # Node.js dependencies
└── README.md # This file
API Reference
Tool: display_message
Displays a message on the Vestaboard using either text mode or board mode.
Parameters
message(string, optional): The text message to display (required for text mode)mode(enum, optional): Display mode - "text" or "board" (default: "text")board(array, optional): 6×22 array of Vestaboard codes (required for board mode)
Response
Returns a success message indicating the content was displayed on the Vestaboard.
Examples
Simple Text Message
// When you say: "Display 'Good Morning!' on my Vestaboard"
// Cursor sends:
{
"message": "Good Morning!",
"mode": "text"
}
Colorful Message with Board Mode
// When you say: "Create a colorful hello world message on my Vestaboard"
// Cursor sends:
{
"mode": "board",
"board": [
[63, 63, 8, 5, 12, 12, 15, 63, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[66, 66, 23, 15, 18, 12, 4, 66, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
]
}
Requirements
- Node.js 16 or higher
- A Vestaboard device
- Vestaboard API key
- Cursor IDE with MCP support
License
This project is open source and available under the MIT License.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Support
For issues related to:
- Vestaboard API: Check the Vestaboard Developer Documentation
- MCP Protocol: See the Model Context Protocol Documentation
- This Project: Open an issue in this repository
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。