
Compeller
- 1 repo stars
- Updated May 5, 2026
- Compellerai/compeller-mcp
Compeller MCP is a MCP server that creates and tracks AI music videos and audio-reactive visuals from songs.
About
Compeller MCP lets coding agents orchestrate AI music videos and audio-reactive visuals from registered songs. developers promoting a launch, musicians testing visualizers, or creators shipping social clips can discover styles, search tracks, create Compels, kick off renders, and pull delivered video without a custom Compeller dashboard loop. The hosted server at compeller.ai uses Streamable HTTP with Bearer or X-API-Token headers; public discovery is open while generation and account actions need your API token. Version 0.5.0 is listed in connector metadata. This repository documents the connector only—not the full Compeller app source—so treat it as a production remote MCP dependency. Plan webhook registration when you automate Ship or Launch pipelines that wait on render-done events.
- Discover styles and pricing, search music, create and track Compels
- Start renders and retrieve finished videos via MCP tools
- Register signed webhooks for render completion events
- Remote endpoint https://compeller.ai/api/mcp (Streamable HTTP JSON-RPC)
- Discovery tools work without auth; generation requires Compeller API token
Compeller by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --transport http compel https://compeller.ai/api/mcp --header "Authorization: Bearer YOUR_TOKEN" --header "X-API-Token: YOUR_X_API_TOKEN"Add your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Transport | HTTP |
| Auth | Required |
| Last updated | May 5, 2026 |
| Repository | Compellerai/compeller-mcp ↗ |
What it does
Turn songs into AI music videos and audio-reactive visuals by creating Compels, starting renders, and tracking completion from your agent.
Who is it for?
musicians, content founders, and marketers automating promo videos or reactive visuals from existing tracks.
Skip if: Skip if you need only static album art with no video render pipeline or Compeller account.
What you get
Your agent can quote styles, create Compels, run renders, fetch videos, and subscribe to completion webhooks programmatically.
- Created and tracked Compels
- Rendered music video files retrievable via MCP
- Webhook endpoints notified on completion
By the numbers
- Server version 0.5.0 per connector metadata
- Endpoint https://compeller.ai/api/mcp
- Unauthenticated discovery; authenticated generation and account operations
README.md
Compeller MCP
Public documentation and metadata for the hosted Compeller MCP server.
Compeller turns music into performance-ready visuals. Agents can discover styles and pricing, search for music, create and track Compels, start renders, retrieve finished videos, and register signed webhooks for completion events.
This repository contains public connector documentation and metadata only. The production Compeller application source code is not published here.
Remote MCP endpoint
https://compeller.ai/api/mcp
- Namespace:
ai.compeller/compel - Server:
compeller-mcp - Version:
0.5.0 - Transport: Streamable HTTP JSON-RPC over HTTPS
- Official MCP Registry: https://registry.modelcontextprotocol.io/v0.1/servers?search=ai.compeller%2Fcompel
- Smithery: https://smithery.ai/servers/info-nijd/compeller
Quick config
Most MCP clients that support remote Streamable HTTP servers can use:
{
"mcpServers": {
"compeller": {
"url": "https://compeller.ai/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_COMPELLER_API_TOKEN"
}
}
}
}
If your MCP client stores raw token values without the Bearer prefix, use the alternate header:
{
"mcpServers": {
"compeller": {
"url": "https://compeller.ai/api/mcp",
"headers": {
"X-API-Token": "YOUR_COMPELLER_API_TOKEN"
}
}
}
}
Discovery works without authentication. Generation, account, media, rendering, and webhook tools require a Compeller API token.
Public docs and discovery
- MCP docs: https://compeller.ai/api/mcp/docs.md
- Agent manifest: https://compeller.ai/agents.json
- LLM guide: https://compeller.ai/llms.txt
- OpenAPI: https://compeller.ai/api/v1/openapi.yaml
- Health: https://compeller.ai/api/v1/health
Tool surface
Compeller currently exposes 20 MCP tools:
Discovery
get_capabilitiesget_pricinglist_stylessearch_music
Media and generation
upload_mediasearch_mediacreate_compel_from_musiccreate_compelget_compelstart_renderlist_compelssearch_compelslist_renderingsget_rendering
Webhooks
register_webhooklist_webhooksupdate_webhookdelete_webhooktest_webhook_deliveryrotate_webhook_secret
Webhook deliveries are signed with X-Compeller-Signature: sha256=<hex> over the raw request body. Secrets are returned exactly once on registration or rotation.
Example prompts
- “Search for Midnight City by M83 and create a cinematic Compeller visual.”
- “Show me available Compeller visual styles.”
- “Check the status of Compel 12345.”
- “Start the render for this READY Compel.”
- “Register a webhook for completed/failed Compeller events.”
Directory listing copy
Short description:
Create AI music videos and audio-reactive visuals from songs through MCP.
Longer description:
Compeller is a creator media pipeline for music. The MCP server lets agents discover styles and pricing, search music, create and track Compels, upload media, start renders, retrieve renderings, and register signed webhooks for completion events. Completed renderings can also be loaded into REACT, Compeller's desktop app for live audio-reactive shows.
Suggested tags:
AI, Music, Video Generation, Audio Reactive, Creative Tools, MCP, Remote MCP, Generative Art, Creator Tools, Entertainment
License
The documentation and metadata in this repository are published under the MIT License.
Recommended MCP Servers
How it compares
Hosted generative video MCP API, not a local ffmpeg SKILL.md skill.
FAQ
Who is ai.compeller/compel for?
Creators and developers using MCP agents to produce music-linked AI videos without hand-operating the Compeller UI for every render.
When should I use ai.compeller/compel?
During Build when you integrate Compeller into content pipelines, prototypes, or launch asset generation with programmatic create-and-track flows.
How do I add ai.compeller/compel to my agent?
Add mcpServers.compeller with url https://compeller.ai/api/mcp and Authorization Bearer YOUR_COMPELLER_API_TOKEN (or X-API-Token), then call tools from your MCP client.