pixoo mcp server for VS Code
io.github.cyanheads/pixoo-mcp-server
Render and push styled pixel art, text, dashboards, and animations to Divoom Pixoo LED displays.
client:VS Code
transport:stdio
runtime:npm
Install pixoo mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pixoo-ip",
"description": "PIXOO_IP",
"password": true
},
{
"type": "promptString",
"id": "pixoo-size",
"description": "PIXOO_SIZE",
"password": true
},
{
"type": "promptString",
"id": "pixoo-output-dir",
"description": "PIXOO_OUTPUT_DIR",
"password": true
},
{
"type": "promptString",
"id": "pixoo-push-min-interval-ms",
"description": "PIXOO_PUSH_MIN_INTERVAL_MS",
"password": true
},
{
"type": "promptString",
"id": "mcp-log-level",
"description": "MCP_LOG_LEVEL",
"password": true
}
],
"servers": {
"pixoo-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cyanheads/pixoo-mcp-server"
],
"env": {
"PIXOO_IP": "${input:pixoo-ip}",
"PIXOO_SIZE": "${input:pixoo-size}",
"PIXOO_OUTPUT_DIR": "${input:pixoo-output-dir}",
"PIXOO_PUSH_MIN_INTERVAL_MS": "${input:pixoo-push-min-interval-ms}",
"MCP_LOG_LEVEL": "${input:mcp-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs