idotmatrix-mcp

idotmatrix-mcp

An MCP server that lets AI assistants draw pixel art on iDotMatrix LED displays over Bluetooth.

Category
访问服务器

README

idotmatrix-mcp

An MCP (Model Context Protocol) server that lets AI assistants draw pixel art on iDotMatrix LED displays over Bluetooth.

Connect your iDotMatrix display to Claude, ChatGPT, or any MCP-compatible client and ask it to draw pictures, icons, animations, dashboards — anything that fits on a 16x16, 32x32, or 64x64 pixel grid.

How It Works

The server maintains an in-memory pixel canvas that matches your display's resolution. AI assistants interact with the canvas through MCP tools — drawing shapes, filling colors, rendering text — then push the finished frame to the physical display over BLE.

AI Assistant  ──MCP tools──>  idotmatrix-mcp  ──BLE──>  iDotMatrix Display
                              (canvas buffer)

Workflow:

  1. The assistant calls discover_devices to find nearby iDotMatrix displays
  2. It connects with connect_device, specifying the screen size
  3. It draws on the canvas using drawing tools (or draw_batch for multiple operations at once)
  4. It calls get_preview to see an ANSI block-art preview in the chat
  5. It calls send_to_display to push the frame to the physical device

Prerequisites

  • Node.js 18+
  • macOS (BLE support via the idotmatrix npm package — uses Noble under the hood)
  • An iDotMatrix LED display powered on and within Bluetooth range

Installation

git clone https://github.com/nailan/idotmatrix-mcp.git
cd idotmatrix-mcp
npm install
npm run build

Configuration

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "idotmatrix": {
      "command": "node",
      "args": ["/absolute/path/to/idotmatrix-mcp/dist/index.js", "--stdio"]
    }
  }
}

Claude Code

Add to your Claude Code settings (.claude/settings.json or global):

{
  "mcpServers": {
    "idotmatrix": {
      "command": "node",
      "args": ["/absolute/path/to/idotmatrix-mcp/dist/index.js", "--stdio"]
    }
  }
}

HTTP mode (other clients)

The server also supports Streamable HTTP transport for clients that don't use stdio:

node dist/index.js                  # defaults to http://127.0.0.1:8321/mcp
node dist/index.js --port=9000      # custom port

Tools

Canvas Management

Tool Description
clear_canvas(color) Fill entire canvas with one color and reset
get_preview() Return an ANSI block-art preview of the canvas
list_colors() List all 48 named colors with hex values

Drawing Primitives

Tool Description
draw_rect(x, y, width, height, color, fill?) Rectangle (filled by default)
draw_circle(cx, cy, radius, color, fill?) Circle (filled by default)
draw_ellipse(cx, cy, rx, ry, color, fill?) Ellipse with independent radii
draw_line(x1, y1, x2, y2, color) Line between two points
draw_triangle(x1, y1, x2, y2, x3, y3, color, fill?) Triangle (filled by default)
draw_rounded_rect(x, y, width, height, radius, color, fill?) Rectangle with rounded corners
draw_polygon(cx, cy, radius, sides, color, fill?, rotation?) Regular polygon (3-12 sides)
draw_gradient(x, y, width, height, color_from, color_to, direction?) Linear gradient fill (vertical, horizontal, or diagonal)
set_pixel(x, y, color) Set a single pixel
flood_fill(x, y, color) Paint-bucket fill from a point
draw_text(text, x, y, color, font_size?) Bitmap text (3x5 "small" or 5x7 "medium")

Batch Drawing

Tool Description
draw_batch(commands) Execute multiple draw commands in one call

draw_batch accepts an array of command objects. Each object has a command field plus the same parameters as the corresponding individual tool. This is the most efficient way to compose scenes — one tool call instead of many round-trips.

[
  { "command": "clear", "color": "dark_blue" },
  { "command": "gradient", "x": 0, "y": 0, "width": 64, "height": 32, "color_from": "navy", "color_to": "sky_blue" },
  { "command": "circle", "cx": 48, "cy": 8, "radius": 5, "color": "yellow" },
  { "command": "ellipse", "cx": 20, "cy": 16, "rx": 10, "ry": 5, "color": "white" },
  { "command": "rounded_rect", "x": 10, "y": 40, "width": 44, "height": 16, "radius": 4, "color": "green" },
  { "command": "polygon", "cx": 50, "cy": 10, "radius": 6, "sides": 5, "color": "gold" },
  { "command": "text", "text": "HI", "x": 28, "y": 44, "color": "white" }
]

Supported commands: clear, rect, circle, ellipse, line, triangle, rounded_rect, polygon, gradient, pixel, fill, text.

Execution stops on the first error and reports which command failed.

Device Management

Tool Description
discover_devices(timeout_seconds?) Scan for nearby iDotMatrix BLE devices
connect_device(device_id, screen_size) Connect to a device (screen size: 16, 32, or 64)
disconnect_device() Disconnect from the current device
send_to_display() Push the canvas buffer to the connected display

Color Palette

The server includes a curated 48-color palette optimized for LED displays. Use list_colors to see all options. Some highlights:

  • Neutrals: black, white, gray, dark_gray, light_gray
  • Warm: red, orange, yellow, coral, salmon, pink, hot_pink
  • Cool: blue, cyan, green, teal, sky_blue, purple, violet
  • Earth: brown, tan, sand, skin, peach, dark_brown
  • Nature: forest, dark_green, lime, spring, mint, olive

Gradients interpolate between any two palette colors, producing smooth intermediate shades not limited to the 48-color palette.

Prompts

The server ships a drawing-guide prompt that gives the AI assistant context about the coordinate system, available tools, color palette, and pixel art tips. MCP clients that support prompts will make this available automatically.

Coordinate System

  • Origin (0, 0) is the top-left corner
  • X increases rightward, Y increases downward
  • Drawing outside bounds is silently clipped

Development

npm run dev          # run with tsx (no build step)
npm run build        # compile TypeScript to dist/
npm run clean        # remove dist/

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选