peon-ping MCP Server

February 18, 2026 · View on GitHub

MCP server for peon-ping — gives AI agents access to 75+ game sound packs via the Model Context Protocol.

What it does

One tool: play_sound. The agent calls it with a sound key like "duke_nukem/Groovy" and it plays through your speakers.

Sound catalog exposed as MCP Resources — the client reads the catalog once, the model knows what's available, no repeated tool calls to browse.

Requirements

  • Node.js 18+
  • peon-ping installed (macOS, Linux, or WSL2)

Setup

# Install peon-ping if you haven't
curl -fsSL https://peonping.com/install | bash

# Install MCP dependencies
cd mcp && npm install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "peon-ping": {
      "command": "node",
      "args": ["/path/to/peon-ping/mcp/peon-mcp.js"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "peon-ping": {
      "command": "node",
      "args": ["/path/to/peon-ping/mcp/peon-mcp.js"]
    }
  }
}

Any MCP client

{
  "command": "node",
  "args": ["/path/to/peon-ping/mcp/peon-mcp.js"],
  "env": { "PEON_VOLUME": "0.5" }
}

Architecture

MCP FeatureWhat it does
Tool: play_soundPlay one or more sounds. { sound: "pack/Name" } or { sounds: ["a/B", "c/D"] }
Resource: peon-ping://catalogFull catalog — all packs and sounds. Client reads once, model has context.
Resource: peon-ping://pack/{name}Sounds in a specific pack by category.

Environment variables

VariableDefaultDescription
PEON_PACKS_DIR~/.openpeon/packsSound packs directory
PEON_VOLUME0.5Playback volume (0-1)

Platform support

  • macOSafplay
  • Linuxpw-play, paplay, ffplay, mpv, play, or aplay (first available)
  • WSL2 — PowerShell SoundPlayer