pixel squads for VS Code
io.github.aitor-alt/pixel-squads
MCP Server for Pixel Squads — observe your AI agents as pixel-art characters in a live office
client:VS Code
transport:stdio
runtime:npm
Install pixel squads in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "pixel-squads-token",
"description": "PIXEL_SQUADS_TOKEN",
"password": true
}
],
"servers": {
"pixel-squads": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"pixelsquads-mcp-server"
],
"env": {
"PIXEL_SQUADS_TOKEN": "${input:pixel-squads-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs