Pa Elevenlabs
БесплатноНе проверенA self-hosted HTTP MCP server wrapping the ElevenLabs speech-to-text API, enabling audio transcription with speaker diarization.
Описание
A self-hosted HTTP MCP server wrapping the ElevenLabs speech-to-text API, enabling audio transcription with speaker diarization.
README
A self-hosted HTTP MCP server wrapping the ElevenLabs speech-to-text API. Designed to be used with Claude Cowork plugins where the sandbox blocks direct outbound API calls. The MCP server runs on the host machine (outside the sandbox), so the API call goes through cleanly.
Tools exposed
| Tool | Description |
|---|---|
speech_to_text |
Transcribe an audio file using ElevenLabs Scribe v2 with speaker diarization |
list_models |
List available ElevenLabs models |
Local development with Docker Compose + ngrok
1. Set up environment variables
cp .env.example .env
Edit .env and fill in:
ELEVENLABS_API_KEY=sk_...
NGROK_AUTHTOKEN=your_ngrok_authtoken # get free token at https://ngrok.com
2. Start the server
docker compose up --build
This starts:
mcp-serveron port8000ngroktunnel on port4040(inspect UI)
3. Get your ngrok public URL
curl -s http://localhost:4040/api/tunnels | python3 -m json.tool | grep public_url
Or open http://localhost:4040 in your browser.
You'll get a URL like: https://abc123.ngrok-free.app
4. Test the health endpoint
curl https://abc123.ngrok-free.app/health
# {"status":"ok"}
Connect to a Cowork plugin
Add the following to your plugin's .mcp.json (or to claude_desktop_config.json for Claude Code):
{
"mcpServers": {
"elevenlabs-mcp": {
"type": "http",
"url": "https://abc123.ngrok-free.app/mcp"
}
}
}
Replace abc123.ngrok-free.app with your actual ngrok URL.
In your skill, call the tool like:
Use the elevenlabs-mcp speech_to_text tool with:
- file_path: /absolute/path/to/audio.mp3
- model_id: scribe_v2
- diarize: true
EC2 production deployment
For production, use the same docker-compose.yml but:
- Remove the
ngrokservice entirely - Point your domain to port
8000using nginx or Caddy as a reverse proxy - Use HTTPS (Let's Encrypt via Caddy is the easiest option)
Minimal Caddyfile:
your-domain.com {
reverse_proxy localhost:8000
}
Update .mcp.json to use your real domain:
{
"mcpServers": {
"elevenlabs-mcp": {
"type": "http",
"url": "https://your-domain.com/mcp"
}
}
}
Установка Pa Elevenlabs
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/rishabh-navadhiti/pa-elevenlabs-mcpFAQ
Pa Elevenlabs MCP бесплатный?
Да, Pa Elevenlabs MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Pa Elevenlabs?
Нет, Pa Elevenlabs работает без API-ключей и переменных окружения.
Pa Elevenlabs — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Pa Elevenlabs в Claude Desktop, Claude Code или Cursor?
Открой Pa Elevenlabs на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Omni Video
An MCP server that transforms LLM-enabled IDEs into professional video editors by pre-processing footage into text proxies, generating motion graphics via HTML/
автор: buildwithtazaARA
Generate images, video and audio from any AI agent — one connector.
автор: ARAYouTube
Transcripts, channel stats, search
автор: YouTubeEverArt
AI image generation using various models.
автор: modelcontextprotocolCompare Pa Elevenlabs with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории media
