Skip to main content
Glama

cast-mcp

ファイルシステムのライブラリからGoogle Castスピーカーへオーディオブックをキャストするための、スタンドアロンHTTP MCPサーバーです。

このサービスは、エージェント向けのMCPツールと、物理デバイス向けのプレーンなHTTPエンドポイントの両方を公開します。オーディオブックはデフォルトで./mediaから読み込まれ、ffmpegをバックエンドにした署名付きセッションURLを通じてスピーカーにストリーミングされます。

また、短い音声メッセージ用の完全ローカルTTSも含まれています。DockerはデフォルトでPiper(en_GB-jenny_dioco-medium音声)を使用し、Piperが失敗した場合はespeak-ngにフォールバックします。

ローカルセットアップ

bun install
cp .env.example .env
mkdir -p media data
bun run start

Related MCP server: sonos-mcp

Docker

cp .env.example .env
mkdir -p media data
docker compose up -d --build

Dockerは./media/media:roとして、./data/dataとしてマウントします。

ライブラリの構成

オーディオブックファイルの配置場所と対応フォーマットの詳細については、MEDIA.mdを参照してください。

./media配下の各フォルダは1冊の本として扱われます:

media/
  the-hobbit/
    metadata.json
    001.mp3
    002.mp3

任意のmetadata.json

{
  "id": "the-hobbit",
  "title": "The Hobbit",
  "author": "J.R.R. Tolkien"
}

現在サポートされている入力拡張子は、.mp3.m4a.m4b.aac.wav.flac.oggです。ストリームはMP3にトランスコードされます。

エンドポイント

  • GET /health

  • POST /mcp

  • GET /books

  • POST /scan

  • GET /speakers

  • POST /play

  • POST /say

  • POST /stop

  • GET /status/:speakerId

  • GET /media/stream?sessionId=...&sig=...

  • GET /tts/:id?sig=...

制御エンドポイントは、設定されている場合、Authorization: Bearer <CONTROL_AUTH_TOKEN>を要求します。MCPはMCP_AUTH_TOKENを使用します。

OpenCode MCP設定

{
  "mcp": {
    "cast-audio": {
      "type": "remote",
      "url": "http://127.0.0.1:4130/mcp",
      "enabled": true,
      "headers": {
        "Authorization": "Bearer {env:CAST_MCP_TOKEN}"
      }
    }
  }
}
F
license - not found
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

View all related MCP servers

Related MCP Connectors

  • MCP server exposing the AceDataCloud Fish Audio API (text-to-speech with voice conditioning)

  • MCP server for Project Gutenberg — 75,000+ public-domain ebooks with full plain-text retrieval.

  • MCP Server for Slima - AI Writing IDE for Novel Authors with AI Beta Reader.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zapplebee/cast-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server