🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

twelvelabs-mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

twelvelabs-mcp-server

MCP server for ElevenLabs Conversational AI API (not affiliated with TwelveLabs video platform) — agents, knowledge base, conversations, voices

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

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 Claude 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

Prerequisites

Quick Start

Option A: npx (no clone needed)

ELEVENLABS_API_KEY=your-key npx twelvelabs-mcp-server

Option 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 build

Add to Claude Desktop

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.

Use it

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 Reference

Agent Tools

ToolWhat it does
twelvelabs_list_agentsList all agents in your account
twelvelabs_get_agentFull config: LLM model, voice, KB docs, webhook, prompt preview
twelvelabs_get_agent_promptFull untruncated system prompt text
twelvelabs_update_agent_promptReplace system prompt and/or first message
twelvelabs_update_agent_settingsChange temperature, voice, TTS settings, language
twelvelabs_update_agent_conversation_capabilitiesEnable chat file uploads and set the maximum-duration message
twelvelabs_list_agent_conversationsRecent conversations for one agent
twelvelabs_get_agent_webhookCurrent webhook URL
twelvelabs_set_agent_webhookSet or remove webhook URL

Knowledge Base Tools

ToolWhat it does
twelvelabs_list_kb_docsAll KB docs with size and creation date
twelvelabs_get_kb_docFull extracted text content of a doc
twelvelabs_add_kb_textAdd a plain text document
twelvelabs_add_kb_urlAdd a web page by URL
twelvelabs_delete_kb_docPermanently delete a doc

Conversation Tools

ToolWhat it does
twelvelabs_list_conversationsFilter history by agent, time, success, duration, rating, status, and tags
twelvelabs_get_conversationFull transcript, audio/tag metadata, data collection, and evaluation results
twelvelabs_rerun_conversation_analysisReanalyse a completed conversation using current agent settings
twelvelabs_rerun_conversation_evaluationRerun a single evaluation criterion for a completed conversation
twelvelabs_list_conversation_tagsList workspace conversation tags
twelvelabs_create_conversation_tagCreate a workspace conversation tag
twelvelabs_update_conversation_tagRename a tag or change its description
twelvelabs_assign_conversation_tagsApply one or more tags to a conversation
twelvelabs_remove_conversation_tagRemove a tag from a conversation
twelvelabs_delete_conversation_tagPermanently delete a workspace conversation tag

Voice Tools

ToolWhat it does
twelvelabs_list_voicesBrowse 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.

Keywords

mcp

FAQs

Package last updated on 20 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts