twelvelabs-mcp-server
Provides tools for managing ElevenLabs Conversational AI agents, knowledge bases, conversations, and voices, including listing, updating, and analyzing conversational data.
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., "@twelvelabs-mcp-serverList my agents"
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.
TwelveLabs MCP Server
This project is not affiliated with TwelveLabs (the video understanding platform). It is an MCP server for the ElevenLabs Conversational AI API — voice agents, knowledge bases, conversations, and TTS. The name "TwelveLabs" is the project codename only.
An enhanced MCP (Model Context Protocol) server that gives any compatible MCP client direct access to the ElevenLabs Conversational AI API -- including capabilities the official ElevenLabs MCP connector doesn't expose.
What this covers
Agents -- list, get full config (including LLM model + temperature), update prompt/settings, manage webhooks and file uploads
Knowledge Base -- list, read full content, add text/URL docs, delete docs
Conversations -- filter and tag history, inspect transcripts, and rerun post-call analysis/evaluations
Voices -- list and search available voices
Related MCP server: elevenlabs-mcp-experiments
Prerequisites
Node.js >= 18
ElevenLabs API key -- get one at elevenlabs.io
Quick Start
Option A: npx (no clone needed)
ELEVENLABS_API_KEY=your-key npx twelvelabs-mcp-serverOption B: Clone and build
git clone https://github.com/micro-JAY/twelvelabs-mcp-server.git
cd twelvelabs-mcp-server
npm install --include=dev
npm run buildConnect an MCP client
Add an equivalent server entry to your MCP client's configuration. The config file location and surrounding syntax vary by client; this is the standard stdio server definition:
{
"mcpServers": {
"twelvelabs": {
"command": "node",
"args": ["/path/to/twelvelabs-mcp-server/dist/index.js"],
"env": {
"ELEVENLABS_API_KEY": "your-api-key-here"
}
}
}
}Restart or reconnect your MCP client. You should see twelvelabs in its
available tools list.
Use it
Ask your MCP-enabled assistant to use the tools, for example:
"List my agents" "Get the full config for agent_1001kjbh14xce5kbreh55ydf4rae" "Show me the last 10 conversations for that agent" "Get the transcript and analysis for conversation_xyz"
Compatibility
This server works with MCP clients that support the stdio transport and let you configure environment variables for a local server process. Clients that only support remote HTTP MCP servers need a compatible stdio bridge or proxy.
Tool Reference
Agent Tools
Tool | What it does |
| List all agents in your account |
| Full config: LLM model, voice, KB docs, webhook, prompt preview |
| Full untruncated system prompt text |
| Replace system prompt and/or first message |
| Change temperature, voice, TTS settings, language |
| Enable chat file uploads and set the maximum-duration message |
| Recent conversations for one agent |
| Current webhook URL |
| Set or remove webhook URL |
Knowledge Base Tools
Tool | What it does |
| All KB docs with size and creation date |
| Full extracted text content of a doc |
| Add a plain text document |
| Add a web page by URL |
| Permanently delete a doc |
Conversation Tools
Tool | What it does |
| Filter history by agent, time, success, duration, rating, status, and tags |
| Full transcript, audio/tag metadata, data collection, and evaluation results |
| Reanalyse a completed conversation using current agent settings |
| Rerun a single evaluation criterion for a completed conversation |
| List workspace conversation tags |
| Create a workspace conversation tag |
| Rename a tag or change its description |
| Apply one or more tags to a conversation |
| Remove a tag from a conversation |
| Permanently delete a workspace conversation tag |
Voice Tools
Tool | What it does |
| Browse available voices with IDs and labels |
Security
Input validation -- all tool parameters are validated with Zod schemas before reaching the API
HTTPS enforcement -- webhook URLs are validated to use HTTPS only
Path traversal protection -- document and agent IDs are sanitized to prevent path traversal
Error sanitization -- internal errors are caught and returned as safe MCP error responses; raw stack traces are never exposed to the client
Development
npm run dev # watch mode with tsx -- auto-reloads on file changes
npm run build # compile to dist/Contributing
Fork the repository
Create a feature branch (
git checkout -b feat/my-feature)Commit your changes (
git commit -m 'feat: add my feature')Push to the branch (
git push origin feat/my-feature)Open a Pull Request
License
MIT -- see LICENSE for details.
Architecture Note
All tools share a single Axios client instance (src/client.ts) initialised from
ELEVENLABS_API_KEY at startup. Tool implementations live in src/tools/ -- one
file per domain -- and are registered onto the McpServer in src/index.ts. The
server communicates over stdio transport (stdin/stdout), which is why all debug
logging uses console.error (stderr), not console.log.
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 Connectors
Let AI agents query data and act across all your business apps via MCP.
Manage portable AI agent playbooks, Agent Skills, MCP configurations, personas, and memory.
Build and manage AI-native customer support agents from Claude or any MCP client.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables seamless integration with ElevenLabs Conversational AI to manage agents, tools, and knowledge base sources. It supports RAG indexing, webhook integration, and document management for building advanced voice-enabled AI agents.MIT
- FlicenseNot gradedqualityCmaintenanceEnables querying ElevenLabs workspace data, including listing agents and retrieving evaluation runs, through Claude Desktop or any MCP client.
- AlicenseNot gradedqualityDmaintenanceEnables creating and managing ElevenLabs conversational AI agents with an interactive UI, voice selection, and configuration of agent behavior.8MIT
- FlicenseAqualityCmaintenanceAn MCP server that enables voice-to-voice AI conversations using ElevenLabs for speech synthesis and recognition, with tools for voice management, text-to-speech, and speech-to-text.7
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/micro-JAY/twelvelabs-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server