🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

pixelsquads-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pixelsquads-mcp-server

MCP Server for Pixel Squads — observe your AI agents as pixel-art characters in a live office

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

pixelsquads-mcp-server

MCP Server for Pixel Squads — observe your AI agents working in a pixel-art office, directly from Claude.

Pixel Squads Office

What it does

Connect Claude Desktop or Claude Code to your Pixel Squads office. Once connected, Claude can:

  • 📊 Check office status — active agents, events/min, errors
  • 🚨 View alerts — see firing alerts and their rules
  • ⏪ Replay activity — get recent event history
  • 👋 Announce yourself — appear as a character in the office
  • 📡 Send events — report tool usage to the office in real-time
  • 🔗 Show connection info — API endpoint, token status, office URL

Quick start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "pixel-squads": {
      "command": "npx",
      "args": ["-y", "pixelsquads-mcp-server"],
      "env": {
        "PIXEL_SQUADS_TOKEN": "pa_your_token_here"
      }
    }
  }
}

Claude Code

claude mcp add pixel-squads \
  -e PIXEL_SQUADS_TOKEN=pa_your_token_here \
  -- npx -y pixelsquads-mcp-server

Get your token

Tools

ToolDescription
pixel_squads_office_statusCurrent office metrics (agents, events/min, errors, alerts)
pixel_squads_alertsActive alert rules and firing status
pixel_squads_replayRecent event history (configurable time window)
pixel_squads_announceRegister yourself as an agent in the office
pixel_squads_send_eventSend AEP events (tool.start, tool.done, status, message, handoff)
pixel_squads_connect_infoShow connection details and office URL

Example conversation

You: Check my office status

Claude: calls pixel_squads_office_status

Your Pixel Squads office has 3 active agents with 12 events/minute. No alerts firing. The top tool being used is "Read" with 45 calls in the last hour.

You: Announce yourself in my office

Claude: calls pixel_squads_announce with name="Claude Assistant"

Done! I'm now visible in your office as "Claude Assistant". Open https://pixelagents.squads.digital/agents/?room=... to see me.

Environment variables

VariableRequiredDefaultDescription
PIXEL_SQUADS_TOKENYesYour AEP token (pa_xxx) from the Conectar tab
PIXEL_SQUADS_URLNohttps://pixelagents.squads.digitalAPI base URL (for self-hosted)

How it works

Claude Desktop / claude.ai
    │ (MCP protocol via stdio)
    ▼
pixelsquads-mcp-server
    │ (HTTPS + Bearer token)
    ▼
pixelagents.squads.digital/api/v1/*
    │
    ▼
Your pixel-art office 🏢

The MCP server is a thin translation layer. It speaks MCP to Claude and AEP (Agent Event Protocol) to the Pixel Squads backend. Your token scopes all operations to your room — complete isolation.

Development

git clone https://github.com/aitor-alt/pixel.git
cd mcp-server
npm install
PIXEL_SQUADS_TOKEN=pa_xxx npm run dev

License

MIT — Pixel Squads by SquadsLab

Keywords

mcp

FAQs

Package last updated on 24 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts