npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

pixelsquads-mcp-server

v0.1.1

Published

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

Readme

pixelsquads-mcp-server

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

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

  1. Sign up free at pixelagents.squads.digital
  2. Create a room
  3. Go to the Conectar tab
  4. Copy your API token (pa_xxx...)

Tools

| Tool | Description | |---|---| | pixel_squads_office_status | Current office metrics (agents, events/min, errors, alerts) | | pixel_squads_alerts | Active alert rules and firing status | | pixel_squads_replay | Recent event history (configurable time window) | | pixel_squads_announce | Register yourself as an agent in the office | | pixel_squads_send_event | Send AEP events (tool.start, tool.done, status, message, handoff) | | pixel_squads_connect_info | Show 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

| Variable | Required | Default | Description | |---|---|---|---| | PIXEL_SQUADS_TOKEN | Yes | — | Your AEP token (pa_xxx) from the Conectar tab | | PIXEL_SQUADS_URL | No | https://pixelagents.squads.digital | API 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