Phantom Voices
БесплатноНе проверенPHANTOM VOICES MCP Server — Search, browse, and get platform-ready voice configurations for ElevenLabs-hosted text-to-speech voices across 29 integration platfo
Описание
PHANTOM VOICES MCP Server — Search, browse, and get platform-ready voice configurations for ElevenLabs-hosted text-to-speech voices across 29 integration platforms including Vapi, Retell AI, Bland AI, Synthflow, Voiceflow, LangChain, Amazon Connect, Twilio, and more. Features natural language voice & multilingual support 9+ languages.
README
PHANTOM VOICES
10 Professional AI Voice Clones — Zero Fee, Instant API Access via ElevenLabs
PHANTOM VOICES is an open, free-to-use catalog of 10 commercially-cleared, professional voice clones hosted on ElevenLabs. Every voice is available through a REST API with zero handshake fees. Sign up for a free ElevenLabs account and start generating speech instantly.
Quick Links
| Resource | URL |
|---|---|
| Voice Portfolio | auto-business-agent.replit.app/portfolio |
| OpenAPI Spec | auto-business-agent.replit.app/api/public/openapi.json |
| Postman Collection | auto-business-agent.replit.app/api/public/postman.json |
| MCP Server (Claude) | phantom-voices-mcp on npm |
| npm Package | phantom-voices on npm |
| AI Plugin | auto-business-agent.replit.app/.well-known/ai-plugin.json |
Voice Catalog
| ID | Archetype | ElevenLabs Voice ID | Add to Account |
|---|---|---|---|
| V1 | Spatial-Ready Immersive | vfaqCOvlrKi4Zp7C2IAm |
Add V1 |
| V2 | Premium Multilingual Briefing Specialist | tlETan7Okc4pzjD0z62P |
Add V2 |
| V3 | Authoritative Multilingual Baritone | n32p8A7EZ9CiVeRYpBY9 |
Add V3 |
| V4 | Conversational E-Learning Authentic | kVBPcEMsUF1nsAO1oNWw |
Add V4 |
| V5 | Energetic Multi-Sector Character & Narrator | chcMmmtY1cmQh2ye1oXi |
Add V5 |
| V6 | Urban Truth-Teller | U1Vk2oyatMdYs096Ety7 |
Add V6 |
| V7 | High-Energy Youthful Retail & Commercial Specialist | DfE5EkknFF950NR6OMui |
Add V7 |
| V8 | Narrative Sage | 8ZBQD0m1R6EIchgSltwB |
Add V8 |
| V9 | Clinical B2B Unbiased Assistant | wDsJlOXPqcvIUKdLXjDs |
Add V9 |
| V10 | Advanced Sci-Fi Technical Companion | VukfMVtvHInVUWoMNPiQ |
Add V10 |
Try It Now
List all voices
curl https://auto-business-agent.replit.app/api/public/voices
Get a single voice
curl https://auto-business-agent.replit.app/api/public/voices/V3
Search voices
curl "https://auto-business-agent.replit.app/api/public/search?q=multilingual+baritone"
Recommend a voice
curl "https://auto-business-agent.replit.app/api/public/recommend?use_case=customer+support&platform=vapi"
Compare a voice vs stock alternatives
curl "https://auto-business-agent.replit.app/api/public/compare?voice_id=V3"
Get voice of the week
curl https://auto-business-agent.replit.app/api/public/voice-of-the-week
AI Agent Integration
PHANTOM VOICES provides ready-to-paste configuration for 29 platforms:
| Category | Platforms |
|---|---|
| Voice Agent Builders | Vapi, Retell AI, Bland AI, Synthflow, Voiceflow, Play.ai |
| AI Frameworks | LangChain, CrewAI, AutoGen (Microsoft), Vercel AI SDK |
| Direct API | ElevenLabs API |
| Telephony | Twilio |
| Low-Code / No-Code | Botpress, Dify.ai, Flowise, n8n, Make (Integromat), Zapier |
| Video AI | HeyGen, Synthesia, D-ID, Pictory, InVideo, Colossyan, Fliki, Runway, Descript, Kapwing, Lumen5 |
Every API response includes a platformConfigs object with the exact JSON config for each platform.
Add to Claude Desktop
Install the MCP Server to give Claude direct access to the voice catalog:
npm install -g phantom-voices-mcp
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"phantom-voices": {
"command": "npx",
"args": ["phantom-voices-mcp"],
"env": {
"PHANTOM_VOICES_API_URL": "https://auto-business-agent.replit.app"
}
}
}
}
Then ask Claude things like:
- "Find me a multilingual voice for a corporate training video"
- "Which voice is best for a sci-fi game NPC?"
- "Give me the Vapi config for voice V9"
Add to ChatGPT
Create a Custom GPT that searches and recommends voices:
- Go to chat.openai.com/gpts/editor
- Name: PHANTOM VOICES — Voice Clone Finder
- Import the action spec from:
https://auto-business-agent.replit.app/api/public/openapi.json - Set Authentication to None
- Publish
The GPT will automatically call the API to search voices and return platform-ready configs.
npm Package
Install the client library:
npm install phantom-voices
Quick example:
const { listVoices, getVoice, searchVoices, speak, SIGNUP_URL } = require("phantom-voices");
const voices = listVoices();
console.log(voices);
const voice = getVoice("V3");
console.log(voice.name, voice.voiceId);
const gaming = searchVoices({ query: "gaming" });
const japanese = searchVoices({ language: "japanese" });
// Generate speech (requires ElevenLabs API key)
// Sign up free: https://try.elevenlabs.io/xz94z17y73rm
const response = await speak("V1", "Hello world", "YOUR_API_KEY");
const audioBuffer = await response.arrayBuffer();
Embed on Your Website
Add a searchable voice catalog widget to any website:
<div data-phantom-voices></div>
<script src="https://auto-business-agent.replit.app/embed/widget.js"></script>
API Endpoints
| Endpoint | Description |
|---|---|
GET /api/public/voices |
List all 10 voices |
GET /api/public/voices/:id |
Get voice by ID (V1-V10) |
GET /api/public/search?q=&language= |
Search voices |
GET /api/public/recommend?use_case=&platform=&tone=&language= |
AI recommendations |
GET /api/public/compare?voice_id= |
Compare vs stock voices |
GET /api/public/voice-of-the-week |
Featured voice |
GET /api/public/preview/:voiceId |
Audio preview (MP3) |
GET /api/public/openapi.json |
OpenAPI 3.0 spec |
GET /api/public/postman.json |
Postman Collection v2.1 |
GET /api/public/manifest.json |
Agent discovery manifest |
GET /.well-known/ai-plugin.json |
ChatGPT plugin manifest |
GET /.well-known/agent.json |
Agent discovery standard |
GET /llms.txt |
LLM-readable site description |
GET /sitemap.xml |
Dynamic sitemap |
License
MIT
Start using PHANTOM VOICES for free
Sign up for ElevenLabs to generate speech with any of the 10 voices instantly.
Установка Phantom Voices
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/TodiwalaVentures/phantom-voices-apiFAQ
Phantom Voices MCP бесплатный?
Да, Phantom Voices MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Phantom Voices?
Нет, Phantom Voices работает без API-ключей и переменных окружения.
Phantom Voices — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Phantom Voices в Claude Desktop, Claude Code или Cursor?
Открой Phantom Voices на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Phantom Voices with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
