VoiceCard
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., "@VoiceCardClone my voice from ~/Desktop/me.mov and make a Miami clip saying happy birthday with my photo."
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.
VoiceCard
Clone your voice and turn it into a shareable waveform video, all driven by MCP. No GUI. Apple Silicon only.
Voice cloning is now commodity. The differentiator is delivery: a short MP4 with a beautiful audio-reactive waveform plays inline in WhatsApp, iMessage, Signal, and Slack, where raw audio files stall, fail to autoplay, or won't cross iOS/Android. Every clip you send is also an ad for the tool. That is the whole idea.
The front end is the MCP. You talk to it from Claude Code, Cursor, or any MCP-aware agent:
"Clone my voice from
~/Desktop/me.mov(here's the transcript), then make a 15-second Miami-palette clip saying happy birthday, with my photo in the center."
How it works
Fully standalone. Speech is generated locally by
mlx-audio (Qwen3-TTS via MLX), the waveform
video is rendered with MLX / Pillow, and muxed with ffmpeg. No cloud, no Voicebox,
no desktop app.
Cloning is zero-shot in-context learning: it trims your reference to ~12 seconds and conditions on it. There is no training step and no separate model per voice.
Related MCP server: leanvox-mcp
Requirements
Apple Silicon Mac (arm64). Enforced at startup.
Nothing else to install by hand.
ffmpegships bundled (static binary viaimageio-ffmpeg); a systemffmpegon PATH is used automatically if present.
Models
VoiceCard uses two models, downloaded once by voicecard-provision (see Install)
into the shared Hugging Face cache (~/.cache/huggingface/hub/):
Qwen3-TTS (~4 GB) — speech synthesis.
Whisper (
large-v3-turbo, ~1.5 GB) — auto-transcribes references and times captions.
No Hugging Face account or token is required — both are public. Anonymous downloads are rate-limited, so if provisioning is slow you can set a free token first (optional):
export HF_TOKEN=hf_xxx # optional — faster/de-throttled provisioning downloadAfter provisioning, the MCP server runs offline and loads the cached models into
memory in a few seconds on first use — it never downloads. (It has to: mlx-audio's loader
makes a blocking network check that deadlocks against the server's async event loop, so
the download is deliberately kept out-of-band in voicecard-provision.)
Install
Needs uv (brew install uv, or the one-line installer
from that page). Nothing else — ffmpeg is bundled; models are fetched by the one-time
voicecard-provision step below.
1. Install, straight from GitHub:
uv tool install git+https://github.com/JasonMakes801/voicecard-mcp2. Provision once (downloads the ~5 GB of models, verifies ffmpeg, vets with a real load — this is the only step that touches the network, with progress in your terminal):
voicecard-provision3. Register it with Claude Code (the voicecard command is now on your PATH):
claude mcp add -s user voicecard -- voicecardThat's it. Ask your agent to clone_voice and make_clip.
The MCP server runs offline — it never downloads. It loads the provisioned models into memory on first use (a few seconds) and warms them lazily.
check_environment()reports readiness;warm_up()loads them explicitly. If models are missing it tells you to runvoicecard-provision. (Provisioning is separate on purpose: model loading deadlocks against a live event loop if it tries to hit the network, so the server must stay offline and downloads happen out-of-band.)
git clone https://github.com/JasonMakes801/voicecard-mcp
cd voicecard-mcp
uv tool install . # or: uv run voicecard
# register the in-place checkout
claude mcp add -s user voicecard -- uv --directory "$PWD" run voicecardTools
Tool | What it does |
| Fast readiness probe (no heavy work): is ffmpeg present, are the models downloaded and loaded (warm), is it |
| Load the models into memory now (a few seconds). Optional — the first |
| List stored voices, each paired with its |
| Render the palettes as an inline swatch image (shows in the chat, nothing to open) plus the list of names to pass to |
| Clone from an audio or video file. Trims the reference to ~12s and stores a profile. |
| Generate speech in a cloned voice; returns a wav path. |
| Generate speech and render the shareable waveform mp4. Captions (pop-up bubbles timed to delivery) are on by default; avatar falls back to the voice's stored |
Palettes: Noir (default), 70s Gold, Miami, Aurora, Sunset, Mint, Blueprint
Aspect: square (1080², default), portrait (9:16)
Layout: linear (default — circular photo + compact gradient waveform below, Dynamic-Island style) · circle (centered audio-reactive spectrum ring)
Arc (circle layout only): full (default, mirrored ring) · top (spikes over the top half)
Config (env)
Var | Default |
|
|
|
|
|
|
| override the ffmpeg binary (else system PATH, else bundled) |
| QR target printed on each clip |
| tagline printed on each clip |
Testing
uv pip install -e ".[test]"
pytest tests/test_fast.py tests/test_mcp.py -q # fast: no model, no network (~1s)
VOICECARD_RUN_MODEL_TESTS=1 pytest tests/test_integration.py -q # real Qwen+Whisper (downloads GBs)
bash scripts/virgin_install_test.sh # fresh-venv install + smoke, from scratchFast (
test_fast.py,test_mcp.py): palette integrity, caption alignment (input words, STT timings), arg validation, and the MCP protocol surface.Integration (
test_integration.py, gated): clone → speak → make_clip end to end, asserting the mp4 has audio+video and non-zero duration.Virgin install (
scripts/virgin_install_test.sh): installs into a throwaway venv and verifies imports, the bundled-ffmpeg fallback (no brew), the console script, and the no-model suites against the installed package.
Notes
Output is stereo,
+faststart, H.264 High profile — tuned to autoplay inline in messengers.The waveform is stylized to always look alive, not a diagnostic spectrum analyzer.
Core ML / ANE offload of the autoregressive decoder is not planned (dynamic shapes + KV cache + sequential decode are a poor ANE fit). A future Core ML vocoder offload is the only piece worth exploring.
Roadmap
Captions without Whisper (harvest Qwen's own alignment). Qwen3-TTS runs at 12 Hz and already knows word timing internally via its cross-attention (a monotonic text-token → audio-frame ridge). Today we recover timing by running Whisper on the output — robust but a whole second model. Instead, patch mlx-audio's decode to surface the cross-attention for the target region (front-cut the ICL reference), extract a monotonic alignment, and map text tokens → words. This would move Whisper off the per-clip hot path: combined with passing
transcriptat clone time, Whisper would never run (or download) for a normal user. Risk: mlx-audio's internal decode is not a stable API, so pin the version and add a drift test (Qwen-derived timings vs Whisper on a fixture; fail if they diverge). Note: there are no phonemes to align — only BPE text tokens → audio frames.
License
MIT. You are responsible for only cloning voices you own or are authorized to use.
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.
Related MCP Servers
AlicenseNot gradedqualityFmaintenanceEnables video generation from text, images, and more through MCP-compatible apps like Claude and Cursor.52MIT
leanvox-mcpofficial
AlicenseNot gradedqualityDmaintenanceEnables text-to-speech generation, voice cloning, dialogue creation, and other TTS operations through natural language in MCP-compatible AI assistants.15MIT- AlicenseNot gradedqualityCmaintenanceEnables AI agents to generate high-quality speech with 54+ voices in multiple languages via MCP tools.17Apache 2.0

Compeller MCPofficial
AlicenseNot gradedqualityDmaintenanceEnables agents to create AI music videos and audio-reactive visuals from songs through MCP, including style discovery, music search, rendering, webhook registration, and media management.1MIT
Related MCP Connectors
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Generate images, video, music and voice from your CLI or AI agent. On-brand AI media toolkit.
Generate images, video, and audio with Glif's media-generation agent
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/JasonMakes801/voicecard-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server