WellSaid Claude Connector
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., "@WellSaid Claude Connectorlist WellSaid voices"
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.
WellSaid Claude Connector
Generate lifelike WellSaid Labs voiceover from text — right inside Claude.
This is a Model Context Protocol server that wraps the WellSaid Labs text-to-speech API and exposes it as Claude tools. Ask Claude to "list WellSaid voices" or "voice this script with Wade C., a little slower and deeper," and it renders audio (plus captions if you want them).
Runs as a local stdio connector (Claude Desktop custom connectors + Claude Code) or as a remote Streamable-HTTP connector. No build step — plain Node ESM.
What Claude can do with it
Tool | What it does |
| List voice avatars and their |
| Summarize the distinct styles/accents/genders/languages to narrow a search. |
| Convert text → audio with a chosen voice. Supports model ( |
| Render speech plus word timing and SRT/VTT captions — the API's zip is extracted to individual files. |
| Start an async TTS job (good for long or batched scripts). |
| Check a clip's status and download it when ready. |
| List recent clips on the account. |
| Stitch multiple clips into one file with custom pauses. |
| Get pronunciation respellings for a tricky name/term. |
| Advanced escape hatch — call any WellSaid endpoint directly. |
Generated files are written to your output folder (default ./output, or set WELLSAID_OUTPUT_DIR).
Prosody & pronunciation (AI Director)
WellSaid's expressive controls run on the caruso model via AI Director tags embedded in the text. wellsaid_generate_speech exposes them two ways:
Whole-line convenience: pass
pitch,tempo, and/orloudness— the connector wraps your text in the right tags and automatically selects thecarusomodel. Approximate ranges: pitch[-45, 100], tempo[0.7, 2.3], loudness[-15, 9].Fine control: embed tags directly in
text, e.g.The <emphasis>best</emphasis> value is <respell value="PEET-suh">pizza</respell>.Usewellsaid_get_respelling_suggestionsto find respelling values.
Output format can be mp3 (default), wav, or s16le, with an optional sample_rate.
Related MCP server: MCP FishAudio Server
Prerequisites
Node.js ≥ 18.17 (uses the built-in
fetch). Developed on Node 24..envauto-loads via a built-in on Node ≥ 20.12, with a manual fallback on older versions.A WellSaid API key — create one at wellsaidlabs.com (Studio → API) or the Developer Portal. Sent as the
X-Api-Keyheader. Default keys are rate-limited to ~3 requests/second and 1,000 characters per synchronous request.
Install & verify
cd wellsaid-connector
npm install
cp .env.example .env # then paste your key into WELLSAID_API_KEY
npm run doctor # checks config + connectivity to /tts/avatarsnpm run doctor prints your config and, if the key works, the number of available voices.
Add it to Claude
Claude Code
claude mcp add wellsaid --env WELLSAID_API_KEY=YOUR_KEY -- node /absolute/path/to/wellsaid-connector/src/index.jsThen in a session: "List my WellSaid voices" → "Generate speech for '…' with speaker_id 3, a little deeper."
Claude Desktop (config file)
Settings → Developer → Edit Config, and merge the mcpServers block from
claude_desktop_config.example.json. Replace the API key, the
args path, and the output dir with your own install location. Fully quit and reopen Claude Desktop;
the tools then appear under the 🔌 connector menu.
Claude Desktop (one-click extension)
The repo ships a manifest.json so it can be packaged as a Desktop Extension
(.mcpb) that prompts for the API key in the UI — no JSON editing:
npx @anthropic-ai/mcpb pack . # produces wellsaid.mcpbDrag wellsaid.mcpb into Claude Desktop → Settings → Extensions, and paste your key when prompted.
The extension defaults the output folder to your Downloads folder (see the config note below).
Remote / hosted connector — public, OAuth (src/remote.js)
This is the path to a public connector anyone can add by URL. src/remote.js is an OAuth 2.1–protected
MCP server (Dynamic Client Registration + PKCE) that shows a consent page where each user pastes their
own WellSaid key; that key is bound to their token and used only for their requests.
npm run start:remote # OAuth MCP server on http://localhost:8788/mcpDeploy it to a public HTTPS URL, then in Claude → Settings → Connectors → Add custom connector →
paste https://your-url/mcp. Full instructions (Docker / Render / Fly / tunnel) are in
DEPLOY.md. This hosted server is also the prerequisite for a
Connectors Directory submission — see
PRIVACY.md for the required privacy policy template.
There's also an authless local HTTP mode for quick testing (
npm run start:http, port 8787) — stateless, no auth, 4 MB body cap. Usestart:remote(OAuth) for anything shared.
Configuration
All configuration is via environment variables (or .env):
Variable | Required | Default | Purpose |
| ✅ | — | Your WellSaid key ( |
|
| Override the API base URL. | |
|
| Where audio/caption files are saved (see note). | |
|
|
| |
|
| Port for HTTP transport. |
Output-dir note: the code default is the connector's
./outputfolder, used whenWELLSAID_OUTPUT_DIRis unset (Claude Code /.envinstalls). The one-click Desktop Extension (.mcpb) and the example Claude Desktop config instead default to your~/Downloadsfolder, because a packaged extension has no writable./output. Any tool call can override withoutput_dir.
Development
npm test # unit + in-process + stdio + http suites
node test/unit.test.js # client helpers, safe file writing, zip reader
node test/inmemory.test.js # tool behavior against a mocked API (real body-building)
node test/stdio.smoke.js # spawns the real process, exercises the MCP handshake
node test/http.smoke.js # Streamable-HTTP transport
npm run inspect # opens the MCP Inspector against the serverNotes on API coverage
wellsaid_list_voices(GET /v1/tts/avatars) andwellsaid_generate_speech(POST /v1/tts/stream) are built against WellSaid's documented request/response shapes, including the integerspeaker_id,model,audio_configs, andlibrary_idsfields and inline AI Director tags.wellsaid_generate_speech_with_timingposts to/v1/tts/word-timingand unpacks the returned zip.wellsaid_combine_clipsusesclip_ids+pause_durationsper the combine endpoint.If WellSaid changes a field,
wellsaid_requestlets Claude call any endpoint directly while this connector is updated.
Security
Your API key stays in your local environment / MCP client config; it is only sent to
api.wellsaidlabs.com(or yourWELLSAID_API_BASE) asX-Api-Key, and is never logged or written to disk.Output filenames are reduced to a bare basename, so a tool call can never write outside your configured output folder.
License
MIT
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
- 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/billyatminyawns/wellsaid-connector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server