heygen-mcp
MCP server for the HeyGen avatar video API. Provides tools to generate talking-avatar videos, including video creation, status checking, downloading, and listing avatars/voices.
README
heygen-mcp
MCP server for the HeyGen avatar video API. Provides tools that any MCP-compatible client (Claude Desktop, Claude Code, etc.) can use to generate talking-avatar videos.
Setup
cd heygen-mcp
npm install
Set your API key (HeyGen dashboard → Settings → API):
export HEYGEN_API_KEY="your-key-here"
Test the server starts correctly:
node index.js
# Should print "HeyGen MCP server running" to stderr
Claude Desktop / Claude Code configuration
{
"mcpServers": {
"heygen": {
"command": "node",
"args": ["/Users/carlosvidal/www/heygen-mcp/index.js"],
"env": { "HEYGEN_API_KEY": "your-key-here" }
}
}
}
Or from the CLI:
claude mcp add heygen -e HEYGEN_API_KEY=your-key-here -- node /Users/carlosvidal/www/heygen-mcp/index.js
Tools
create_video
Primary tool. Submits the video, polls until rendering finishes, returns the video_url, and
optionally saves the mp4 to output_path.
Params: avatar_id, text, voice_id, talking_photo_id, audio_url, avatar_style,
speed, emotion, locale, background, scenes, dimension, title, caption,
output_path, timeout_seconds
generate_video
Submits the video and returns video_id immediately, without polling.
Params: same as create_video minus output_path / timeout_seconds
check_video
Status of a video by video_id — pending, waiting, processing, completed or failed.
Returns video_url, thumbnail_url, gif_url, caption_url and duration when completed.
download_video
Saves a finished video to a local .mp4. Accepts video_id (URL looked up automatically) or a
direct video_url.
list_avatars
Search avatars by name or ID. Always pass search — an account holds well over a thousand
avatars. Set include_talking_photos to also match photo avatars.
list_voices
Search voices by search / language / gender. Returns voice_id, preview_audio,
emotion_support and support_locale.
list_videos
Recent videos in the account, to recover a video_id generated earlier.
get_quota
Remaining API quota in seconds and credits. Run before long jobs.
Single scene vs. multi-scene
A single scene uses the flat arguments:
{ "avatar_id": "Piper_standing_education_front", "text": "Hola, soy Piper.", "voice_id": "1eca26cb..." }
Multiple scenes use scenes, which overrides the flat arguments. Each scene has its own avatar,
script, voice and background:
{
"scenes": [
{ "avatar_id": "avatar_a", "text": "Primera escena.", "voice_id": "voice_a",
"background": { "type": "color", "value": "#f5f5f5" } },
{ "avatar_id": "avatar_b", "text": "Segunda escena.", "voice_id": "voice_b",
"background": { "type": "image", "url": "https://example.com/bg.jpg" } }
],
"dimension": "1080p_portrait",
"title": "Demo"
}
Dimension presets
| Preset | Size |
|---|---|
1080p_landscape |
1920x1080 |
720p_landscape (default) |
1280x720 |
1080p_portrait |
1080x1920 |
720p_portrait |
720x1280 |
square |
1080x1080 |
Notes
- Video URLs expire 7 days after generation — use
output_pathordownload_videoto keep them. - Max 1500 characters of
textper scene; split longer scripts across scenes. - HeyGen bills 1 credit per 60 seconds of rendered video.
- Rendering typically takes 1–3 minutes; polling interval is 5 seconds, default timeout 300s.
emotiononly applies to voices withemotion_support: true;localeonly to voices withsupport_locale: true.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.