elevenlabs-mcp

elevenlabs-mcp

Provides tools for generating speech from text using the ElevenLabs API, including voice listing, text-to-speech conversion, and quota checking.

Category
Visit Server

README

elevenlabs-mcp

MCP server for the ElevenLabs text-to-speech API. Provides tools that any MCP-compatible client (Claude Desktop, Claude Code, etc.) can use to generate speech from text.

Setup

cd elevenlabs-mcp
npm install

Set your API key:

export ELEVENLABS_API_KEY="your-key-here"

Test the server starts correctly:

node index.js
# Should print "ElevenLabs MCP server running" to stderr

Claude Desktop configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "elevenlabs": {
      "command": "node",
      "args": ["/ABSOLUTE/PATH/elevenlabs-mcp/index.js"],
      "env": { "ELEVENLABS_API_KEY": "your-key-here" }
    }
  }
}

Replace /ABSOLUTE/PATH/ with the actual path to this directory.

Quick-start workflow

  1. Find a voice — call list_voices to get available voice_id values
  2. Generate speech — call text_to_speech with the voice_id and your text
  3. Check quota — call get_quota to verify character consumption

Tools

text_to_speech (primary)

Converts text to an mp3 file. Max 5000 characters per call.

Params: text, voice_id, output_path, model_id, stability, similarity_boost, style, language_code

text_to_speech_long

For texts over 5000 characters. Splits into chunks and saves numbered files.

Params: text, voice_id, output_dir, base_filename, model_id, stability, similarity_boost

list_voices

Lists all voices in your account with voice_id, name, category, and preview URL.

list_models

Lists TTS models with capabilities and language support.

get_quota

Shows character usage, limit, remaining quota, and next reset date.

Common voice IDs (reference)

These are default ElevenLabs voices — always verify with list_voices as IDs can vary by account:

Voice ID
Rachel 21m00Tcm4TlvDq8ikWAM
Bella EXAVITQu4vr4xnSDxMaL

Recommended models

Model Use case
eleven_multilingual_v2 Best quality, 32 languages
eleven_flash_v2_5 Ultra-low latency (~75ms), real-time
eleven_v3 Newest, most expressive

Notes

  • Billing is per character consumed
  • Use get_quota to monitor usage before large jobs
  • Character count is logged to stderr on every TTS call
  • text_to_speech_long splits by paragraph then sentence boundaries

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured