ai
ElevenLabs MCP, CLI, and Lua Integration for AI Agents
ElevenLabs integration docs for AI agents: MCP gateway setup, ElevenLabs CLI commands, Lua API reference, credentials, and function schemas.
8 functions 5 read 3 write API key auth
ElevenLabs for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Machine-Readable Metadata
- integration_slug
elevenlabs- route_slug
elevenlabs- package
elevenlabs- auth_strategy
api_keyAPI key- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. ElevenLabs CLIHeadless setup and direct function calls. ElevenLabs MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
ElevenLabs MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for ElevenLabs.
Claude Code ElevenLabs MCP setup for Claude Code. Cursor ElevenLabs MCP setup for Cursor. Codex ElevenLabs MCP setup for Codex. OpenAI Agents ElevenLabs MCP setup for OpenAI Agents SDK. Claude Agent SDK ElevenLabs MCP setup for Claude Agent SDK. Vercel AI SDK ElevenLabs MCP setup for Vercel AI SDK. LangChain ElevenLabs MCP setup for LangChain. LangGraph ElevenLabs MCP setup for LangGraph. CrewAI ElevenLabs MCP setup for CrewAI. MCP clients ElevenLabs MCP setup for Generic MCP Clients.
ElevenLabs CLI Matrix
Use these pages for direct ElevenLabs CLI workflows in scripts, CI, cron, and agent wrappers.
CI ElevenLabs CLI for CI. Cron Jobs ElevenLabs CLI for cron jobs. Shell Scripts ElevenLabs CLI for shell scripts. Headless Automation ElevenLabs CLI for headless automation. Coding Agents ElevenLabs CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
elevenlabs.elevenlabs_text_to_speech | Write write | 7 | Convert text to speech audio using an ElevenLabs voice. Returns base64-encoded audio. Choose a voice ID and model ID to control the output. |
elevenlabs.elevenlabs_list_voices | Read read | 0 | List all available voices in your ElevenLabs account, including pre-made and cloned voices. Use this to discover voice IDs for text-to-speech. |
elevenlabs.elevenlabs_get_voice | Read read | 1 | Get detailed information about a specific ElevenLabs voice, including its settings, labels, and fine-tuning info. |
elevenlabs.elevenlabs_create_voice | Write write | 3 | Create a new voice clone in ElevenLabs. Provide a name, optional audio sample file paths or base64-encoded data, and an optional description. |
elevenlabs.elevenlabs_delete_voice | Write write | 1 | Permanently delete a voice from your ElevenLabs account. This action cannot be undone. |
elevenlabs.elevenlabs_get_models | Read read | 0 | List all available ElevenLabs text-to-speech models, including their IDs, names, and language support. Use model IDs when calling text_to_speech. |
elevenlabs.elevenlabs_get_history | Read read | 2 | Browse your ElevenLabs generation history. Returns a paginated list of past text-to-speech requests with metadata. |
elevenlabs.elevenlabs_get_current_user | Read read | 0 | Get your ElevenLabs account details, including subscription tier, character usage, and remaining quota. |