MCP Hub
Back to servers

phantom-voices-mcp

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.

glama
Forks
1
Updated
Mar 5, 2026

PHANTOM VOICES
10 Professional AI Voice Clones — Zero Fee, Instant API Access via ElevenLabs

License: MIT Voices: 10 Fee: Zero Languages: 9+ Platforms: 29 npm version MCP version


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

ResourceURL
Voice Portfolioauto-business-agent.replit.app/portfolio
OpenAPI Specauto-business-agent.replit.app/api/public/openapi.json
Postman Collectionauto-business-agent.replit.app/api/public/postman.json
MCP Server (Claude)phantom-voices-mcp on npm
npm Packagephantom-voices on npm
AI Pluginauto-business-agent.replit.app/.well-known/ai-plugin.json

Voice Catalog

IDArchetypeElevenLabs Voice IDAdd to Account
V1Spatial-Ready ImmersivevfaqCOvlrKi4Zp7C2IAmAdd V1
V2Premium Multilingual Briefing SpecialisttlETan7Okc4pzjD0z62PAdd V2
V3Authoritative Multilingual Baritonen32p8A7EZ9CiVeRYpBY9Add V3
V4Conversational E-Learning AuthentickVBPcEMsUF1nsAO1oNWwAdd V4
V5Energetic Multi-Sector Character & NarratorchcMmmtY1cmQh2ye1oXiAdd V5
V6Urban Truth-TellerU1Vk2oyatMdYs096Ety7Add V6
V7High-Energy Youthful Retail & Commercial SpecialistDfE5EkknFF950NR6OMuiAdd V7
V8Narrative Sage8ZBQD0m1R6EIchgSltwBAdd V8
V9Clinical B2B Unbiased AssistantwDsJlOXPqcvIUKdLXjDsAdd V9
V10Advanced Sci-Fi Technical CompanionVukfMVtvHInVUWoMNPiQAdd 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:

CategoryPlatforms
Voice Agent BuildersVapi, Retell AI, Bland AI, Synthflow, Voiceflow, Play.ai
AI FrameworksLangChain, CrewAI, AutoGen (Microsoft), Vercel AI SDK
Direct APIElevenLabs API
TelephonyTwilio
Low-Code / No-CodeBotpress, Dify.ai, Flowise, n8n, Make (Integromat), Zapier
Video AIHeyGen, 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:

  1. Go to chat.openai.com/gpts/editor
  2. Name: PHANTOM VOICES — Voice Clone Finder
  3. Import the action spec from:
    https://auto-business-agent.replit.app/api/public/openapi.json
    
  4. Set Authentication to None
  5. 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

EndpointDescription
GET /api/public/voicesList all 10 voices
GET /api/public/voices/:idGet 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-weekFeatured voice
GET /api/public/preview/:voiceIdAudio preview (MP3)
GET /api/public/openapi.jsonOpenAPI 3.0 spec
GET /api/public/postman.jsonPostman Collection v2.1
GET /api/public/manifest.jsonAgent discovery manifest
GET /.well-known/ai-plugin.jsonChatGPT plugin manifest
GET /.well-known/agent.jsonAgent discovery standard
GET /llms.txtLLM-readable site description
GET /sitemap.xmlDynamic sitemap

License

MIT


Start using PHANTOM VOICES for free
Sign up for ElevenLabs to generate speech with any of the 10 voices instantly.

Reviews

No reviews yet

Sign in to write a review