MCP Hub
Back to servers

CastleCall MCP

Exposes a text-to-speech announcement tool for the CastleCall home PA system on Raspberry Pi. It enables users to broadcast voice messages using local Piper or cloud-based ElevenLabs providers through the Model Context Protocol.

glama
Updated
Mar 14, 2026

CastleCall MCP

An MCP server that exposes a text-to-speech announce tool for CastleCall — a home PA/announcement system for Raspberry Pi.

Supports Piper (local) and ElevenLabs (cloud) TTS providers via stdio transport.

Setup

npm install
npm run build

Configuration

VariableRequiredDescription
CASTLECALL_URLYesURL of your CastleCall instance (e.g. http://192.168.1.50:3000)
CASTLECALL_PROVIDERNoTTS provider: piper (default) or elevenlabs
CASTLECALL_VOICE_IDWhen using ElevenLabsElevenLabs voice ID

Usage

Claude Desktop / Claude Code

Add to your MCP settings:

{
  "mcpServers": {
    "castlecall": {
      "command": "node",
      "args": ["/path/to/castlecall-mcp/dist/cli.js"],
      "env": {
        "CASTLECALL_URL": "http://192.168.1.50:3000",
        "CASTLECALL_PROVIDER": "piper"
      }
    }
  }
}

ElevenLabs example:

{
  "mcpServers": {
    "castlecall": {
      "command": "node",
      "args": ["/path/to/castlecall-mcp/dist/cli.js"],
      "env": {
        "CASTLECALL_URL": "http://192.168.1.50:3000",
        "CASTLECALL_PROVIDER": "elevenlabs",
        "CASTLECALL_VOICE_ID": "your-voice-id"
      }
    }
  }
}

Tool

announce

Play a text-to-speech announcement on CastleCall.

ParameterTypeRequiredDescription
textstringYesThe text to announce

Reviews

No reviews yet

Sign in to write a review