
AudioPod AI
from AudiopodAI
Hosted MCP server for AudioPod's audio AI: text-to-speech, voice cloning, music generation, stem and speaker separation, transcription, denoise, and voice conversion.
AudioPod MCP Server
Hosted Model Context Protocol server for AudioPod's audio AI. Give any MCP-capable agent โ Claude Desktop, Claude Code, Cursor, Continue, Cline, Goose, Codex โ ten audio tools over a single endpoint. No install, no local models, no GPU.
| Endpoint | https://mcp.audiopod.ai |
| Transport | Streamable-HTTP (MCP 2025-06-18) |
| Auth | X-API-Key: ap_* (or OAuth2 / JWT) โ get a free key |
| Docs | https://docs.audiopod.ai/sdks/mcp |
| Discovery | /.well-known/mcp/server-card.json |
Tools
| Tool | Does |
|---|---|
text_to_speech | Speech in 85+ languages, 500+ voices and custom clones |
clone_voice | Clone a voice from a 5โ30s reference clip |
change_voice | Convert a recording to a different target voice |
generate_music | Songs, instrumentals, rap, or vocal stems from a text prompt |
separate_stems | Split a track into stems (vocals, drums, bass, โฆ); two-stem mode = karaoke |
separate_speakers | Isolate each speaker into a separate track |
transcribe_audio | Transcribe with word-level timestamps and speaker diarization |
denoise_audio | Remove background noise while preserving voice character |
convert_media | Convert audio/video formats (mp3/wav/flac/ogg/m4a, mp4/mov) |
check_job_status | Poll the status/result of a long-running job (free) |
Long-running tools return a job_id; poll with check_job_status.
Add it
Claude Code
claude mcp add --transport http audiopod https://mcp.audiopod.ai \
--header "X-API-Key: ap_YOUR_KEY" --scope userClaude Desktop / Cursor / Continue / Cline โ add to your mcpServers config:
{
"mcpServers": {
"audiopod": {
"url": "https://mcp.audiopod.ai",
"headers": { "X-API-Key": "ap_YOUR_KEY" }
}
}
}Try it (raw JSON-RPC)
# List tools
curl -s https://mcp.audiopod.ai \
-H "X-API-Key: ap_YOUR_KEY" -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# Text to speech
curl -s https://mcp.audiopod.ai \
-H "X-API-Key: ap_YOUR_KEY" -H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call",
"params":{"name":"text_to_speech","arguments":{"text":"Hello from my agent."}}}'Building a startup on this?
Apply to AudioPod for Startups โ free Pro for 3 months plus developer API credits for eligible early-stage teams.
Links
- Website โ https://audiopod.ai
- API + SDK docs โ https://docs.audiopod.ai
- MCP setup guide โ https://docs.audiopod.ai/sdks/mcp
License
MIT โ see LICENSE. (Covers this listing/README; the AudioPod service itself is governed by the AudioPod Terms.)
This tool doesn't publish a standard install command โ the repository README on GitHub covers its setup.
No common issues documented yet. If you hit a problem, the repository's GitHub Issues page is the best place to look.