MCP server for ElevenLabs Conversational AI (not TwelveLabs video) — agents, KB, voices
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"twelvelabs": {
"env": {
"ELEVENLABS_API_KEY": "your-api-key-here"
},
"args": [
"/path/to/twelvelabs-mcp-server/dist/index.js"
],
"command": "node"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
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.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'twelvelabs-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked twelvelabs-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for io.github.micro-JAY/twelvelabs-mcp-server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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 Claude direct access to the ElevenLabs Conversational AI API -- including capabilities the official ElevenLabs MCP connector doesn't expose.
ELEVENLABS_API_KEY=your-key npx twelvelabs-mcp-server
git clone https://github.com/micro-JAY/twelvelabs-mcp-server.git
cd twelvelabs-mcp-server
npm install --include=dev
npm run build
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"twelvelabs": {
"command": "node",
"args": ["/path/to/twelvelabs-mcp-server/dist/index.js"],
"env": {
"ELEVENLABS_API_KEY": "your-api-key-here"
}
}
}
}
Then restart Claude Desktop. You should see "twelvelabs" in the available tools panel.
In any Claude conversation:
"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"
| Tool | What it does |
|---|---|
twelvelabs_list_agents | List all agents in your account |
twelvelabs_get_agent | Full config: LLM model, voice, KB docs, webhook, prompt preview |
twelvelabs_get_agent_prompt | Full untruncated system prompt text |
twelvelabs_update_agent_prompt | Replace system prompt and/or first message |
twelvelabs_update_agent_settings | Change temperature, voice, TTS settings, language |
twelvelabs_list_agent_conversations | Recent conversations for one agent |
twelvelabs_get_agent_webhook | Current webhook URL |
twelvelabs_set_agent_webhook | Set or remove webhook URL |
| Tool | What it does |
|---|---|
twelvelabs_list_kb_docs | All KB docs with size and creation date |
twelvelabs_get_kb_doc | Full extracted text content of a doc |
twelvelabs_add_kb_text | Add a plain text document |
twelvelabs_add_kb_url | Add a web page by URL |
twelvelabs_delete_kb_doc | Permanently delete a doc |
| Tool | What it does |
|---|---|
twelvelabs_list_conversations | Recent conversations (optionally filtered by agent) |
twelvelabs_get_conversation | Full transcript + data_collection + evaluation_criteria |
| Tool | What it does |
|---|---|
twelvelabs_list_voices | Browse available voices with IDs and labels |
npm run dev # watch mode with tsx -- auto-reloads on file changes
npm run build # compile to dist/