MCP Voice Soundboard
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Voice SoundboardSay 'Hello, welcome to the show' in a cheerful voice."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Highlights
MCP native — stdio transport, works with Claude Desktop, Cursor, and any MCP client
5 tools —
voice_speak,voice_dialogue,voice_status,voice_interrupt,voice_inner_monologue48 approved voices, 9 languages — English (American + British), Japanese, Mandarin, Spanish, French, Hindi, Italian, Brazilian Portuguese. Curated presets:
narrator,announcer,whisper,storyteller,assistantEmotion spans — 8 emotions via
{joy}...{/joy}inline markupSSML-lite —
<break>,<emphasis>,<prosody>without full SSML complexitySFX tags —
[ding],[chime],[whoosh],[tada],[pop],[click]inline sound effectsMulti-speaker dialogue —
Speaker: lineformat with auto-cast and pause directivesGuardrails — rate limiting, concurrency semaphore, request timeouts, path traversal protection, secret redaction
Swappable backends — Mock (built-in), HTTP proxy, Python bridge, or bring your own
Related MCP server: Blabber-MCP
Quick Start
npx @mcptoolshop/voice-soundboard-mcpOr install globally:
npm install -g @mcptoolshop/voice-soundboard-mcp
voice-soundboard-mcpClaude Desktop / MCP Client Config
Add to your MCP client configuration (e.g. claude_desktop_config.json):
{
"mcpServers": {
"voice-soundboard": {
"command": "npx",
"args": ["-y", "@mcptoolshop/voice-soundboard-mcp"]
}
}
}With options:
{
"mcpServers": {
"voice-soundboard": {
"command": "npx",
"args": [
"-y", "@mcptoolshop/voice-soundboard-mcp",
"--artifact=path",
"--output-dir=/tmp/voice-output",
"--timeout=30000",
"--max-concurrent=2"
]
}
}
}MCP Tools
voice_speak
Synthesize speech from text.
text: "Hello world!"
voice?: "am_fenrir" # Voice ID or preset name
speed?: 1.0 # 0.5 - 2.0
mood?: "dry" # Humor mood (sensor-humor integration)
format?: "wav" # wav | mp3 | ogg | raw
artifactMode?: "path" # path | base64
outputDir?: "subdir" # Subdirectory within output root
sfx?: true # Enable [ding], [chime] etc.voice_dialogue
Multi-speaker dialogue synthesis.
script: "Alice: Hello!\nBob: Hey there!"
cast?: { "Alice": "af_sky", "Bob": "am_fenrir" }
speed?: 1.0
concat?: true # Combine into single file
debug?: true # Include cue_sheet
artifactMode?: "path" # path | base64
outputDir?: "subdir" # Subdirectory within output rootvoice_status
Returns engine health, available voices, presets, and backend info. No arguments.
voice_interrupt
Stop or rollback active synthesis.
streamId?: "stream-123"
reason?: "user_spoke" # user_spoke | context_change | timeout | manualvoice_inner_monologue
Ephemeral micro-utterances for ambient narration. Requires --ambient flag or VOICE_SOUNDBOARD_AMBIENT_ENABLED=1.
text: "Interesting..." # Max 500 chars, auto-redacted
category?: "thinking" # general | thinking | observation | debugVoices
48 voices across 9 languages. Language is auto-inferred from the voice ID prefix — no configuration required.
Prefix | Language |
| English (American) |
| English (British) |
| Japanese |
| Mandarin Chinese |
| Spanish |
| French |
| Hindi |
| Italian |
| Brazilian Portuguese |
English — American
ID | Name | Gender | Style |
| Aoede | Female | Musical |
| Bella | Female | Warm |
| Heart | Female | Caring |
| Jessica | Female | Professional |
| Kore | Female | Youthful |
| Nicole | Female | Soft |
| Sarah | Female | Clear |
| Sky | Female | Airy |
| Eric | Male | Confident |
| Fenrir | Male | Powerful |
| Liam | Male | Friendly |
| Michael | Male | Deep |
| Onyx | Male | Smooth |
| Puck | Male | Playful |
English — British
ID | Name | Gender | Style |
| Alice | Female | Proper |
| Emma | Female | Refined |
| Isabella | Female | Warm |
| Fable | Male | Storytelling |
| George | Male | Authoritative |
| Lewis | Male | Friendly |
Japanese
ID | Name | Gender | Style |
| Alpha | Female | Clear |
| Gongitsune | Female | Storytelling |
| Nezuko | Female | Gentle |
| Tebukuro | Female | Warm |
| Kumo | Male | Calm |
Mandarin Chinese
ID | Name | Gender | Style |
| Xiaobei | Female | Bright |
| Xiaoni | Female | Gentle |
| Xiaoxiao | Female | Clear |
| Xiaoyi | Female | Warm |
| Yunjian | Male | Authoritative |
| Yunxi | Male | Friendly |
| Yunxia | Male | Calm |
| Yunyang | Male | Confident |
Spanish
ID | Name | Gender | Style |
| Dora | Female | Warm |
| Alex | Male | Confident |
| Santa | Male | Jolly |
French
ID | Name | Gender | Style |
| Siwis | Female | Refined |
Hindi
ID | Name | Gender | Style |
| Alpha | Female | Clear |
| Beta | Female | Warm |
| Omega | Male | Deep |
| Psi | Male | Calm |
Italian
ID | Name | Gender | Style |
| Sara | Female | Warm |
| Nicola | Male | Confident |
Brazilian Portuguese
ID | Name | Gender | Style |
| Dora | Female | Warm |
| Alex | Male | Confident |
| Santa | Male | Jolly |
Presets
Preset | Voice | Speed | Description |
|
| 0.95 | Calm, clear, documentary style |
|
| 1.1 | Bold, energetic, broadcast style |
|
| 0.85 | Soft, intimate, gentle |
|
| 0.90 | Expressive, varied pacing |
|
| 1.0 | Friendly, helpful, conversational |
Emotion Spans
Wrap text in emotion tags to control prosody and voice routing:
{joy}Great news!{/joy} But {calm}let me explain.{/calm}Supported: neutral, serious, friendly, professional, calm, joy, urgent, whisper
CLI Flags
Flag | Default | Description |
|
| Audio delivery mode |
|
| Output directory |
|
| Backend selection |
| off | Enable inner-monologue system |
|
| Max concurrent synthesis requests |
|
| Per-request timeout |
|
| Auto-cleanup age (0 to disable) |
Packages
This is a pnpm monorepo with two publishable packages:
Package | Description | npm |
Backend-agnostic core library (validation, SSML, chunking, schemas) | ||
MCP server with CLI, guardrails, and transport |
Development
# Install
pnpm install
# Build
pnpm build
# Test (363 tests)
pnpm test
# Build + test in one step
pnpm verifyPart of MCP Tool Shop
Project Structure
mcp-voice-soundboard/
packages/
core/ @mcptoolshop/voice-soundboard-core
src/
limits.ts SHIP_LIMITS, text/chunk limits
schemas.ts VoiceRequest, VoiceResponse, error codes
artifact.ts resolveOutputDir, path sandbox
voices.ts Approved voice registry + presets
emotion.ts Emotion span parser
ssml/ SSML-lite parser + limits
chunking/ Text chunker
sfx/ SFX tag parser + registry
sandbox.ts Safe filenames, symlink checks
ambient.ts AmbientEmitter for inner monologue
redact.ts PII/secret redaction
mcp-server/ @mcptoolshop/voice-soundboard-mcp
src/
server.ts MCP tool registration + guardrail wiring
cli.ts CLI entrypoint (stdio transport)
backend.ts Backend abstraction + mock/HTTP
concurrency.ts SynthesisSemaphore
rateLimit.ts ToolRateLimiter (sliding window)
timeout.ts withTimeout utility
retention.ts Output file cleanup timer
redact.ts Server-level redaction
validation.ts Synthesis result validation
tools/ Individual tool handlers
assets/ Logo, audio event manifests
docs/ Architecture docsPrivacy
No telemetry. This tool collects no usage data, sends no analytics, and makes no network requests except to the TTS backend you configure. All processing is local.
Security
See SECURITY.md for vulnerability reporting.
See THREAT_MODEL.md for the full threat surface analysis.
Related
Project | Description |
Claude Code plugin — slash commands, emotion-aware narration |
Support
Questions / help: Discussions
Bug reports: Issues
Security: SECURITY.md
Scorecard
Category | Score | Notes |
A. Security | 10/10 | SECURITY.md, THREAT_MODEL.md, redaction, no telemetry |
B. Error Handling | 8/10 | Structured error contract (code/hint/retryable), toToolError pattern |
C. Operator Docs | 9/10 | README, CHANGELOG, HANDBOOK, tool docs |
D. Shipping Hygiene | 9/10 | CI, verify script, dependabot, lockfile |
E. Identity | 10/10 | Logo, translations, landing page, metadata |
Total | 46/50 |
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/mcp-tool-shop-org/mcp-voice-soundboard'
If you have feedback or need assistance with the MCP directory API, please join our Discord server