xLights MCP Server
Analyzes music and generates xLights light show sequences, compatible with any MCP-compatible AI tool.
README
ā ļø Beta: This project is currently in beta. Features may change, and you may encounter bugs. Feedback and contributions are welcome!
xLights MCP Server
An MCP (Model Context Protocol) server that analyzes music and generates xLights light show sequences. Works with any MCP-compatible AI tool ā GitHub Copilot CLI, Claude Desktop, Cursor, VS Code + Copilot Chat, Windsurf, Cline, and more.
Give it an .mp3, and it will analyze the beats, song structure, and energy ā then generate a valid .xsq sequence file with effects placed across all of your light models, synced to the music.
What It Does
šµ Audio Analysis
- Beat & tempo detection ā identifies every beat, downbeat, and bar boundary
- Song structure ā detects intro, verse, chorus, bridge, and outro sections
- Frequency spectrum ā bass, mid, and high energy curves over time
- Energy profiling ā loudness dynamics, peak detection, dynamic range
- Source separation ā isolate vocals, drums, bass, and other stems via Demucs (optional)
š” Sequence Generation
- Generates valid
.xsqfiles that open directly in xLights ā no xLights GUI required during generation - Reads your actual show config ā knows your models, controllers, channel counts, and model types
- Intelligent effect selection ā picks effects based on model type (arches get chases, trees get spirals, etc.) and musical features (beats ā shockwaves, choruses ā high energy, verses ā gentle)
- Theme-aware palettes ā Christmas (red/green/gold) and Halloween (orange/purple) color schemes
- Three generation modes:
- Automatic ā AI picks everything, you review in xLights
- Guided ā AI shows song structure, you choose effects per section
- Template ā define reusable effect recipes, AI places them on beat
- Never overwrites ā existing sequences are safe; generated files get a
(generated N)suffix
š¦ Sequence Import & Remapping
- Import community sequences ā take any
.xsqor.zippackage from the xLights community and remap it to your show layout - Intelligent model matching ā automatically maps imported models to yours by name, type, and pixel count
- Zip package support ā extracts audio, video, shader, and image assets; rewrites hardcoded file paths
- Singing model awareness ā singing face models only match to other singing models
- Full mapping report ā see exactly what matched, how, and what was skipped
- Manual overrides ā correct any mapping before the remapped sequence is generated
š” FPP Integration
- Check status of your Falcon Pi Player
- Upload sequences (.fseq + audio) to FPP
- Manage playlists ā list, start, stop
- Works with FPP's REST API
Prerequisites
- Python 3.11+
- uv (recommended) or pip
- ffmpeg ā for audio format handling (
brew install ffmpegon macOS,apt install ffmpegon Linux) - xLights ā installed with at least one show folder configured
Installation
Step 1: Clone the repository
git clone https://github.com/JohnBreault/xlights-mcp-server.git
cd xlights-mcp-server
Step 2: Create a virtual environment and install
uv venv
uv pip install -e .
Optional extras for enhanced features:
# Stem separation ā isolates vocals/drums/bass for smarter sequencing (~2GB model download)
uv pip install -e ".[separation]"
# Lyrics/singing faces ā transcribes vocals for lip-sync animation
uv pip install -e ".[lyrics]"
# Better beat detection
uv pip install -e ".[beats]"
# Everything
uv pip install -e ".[all]"
Step 3: Show folder configuration
On first run, the server auto-detects your xLights show folders by scanning common locations:
| OS | Locations checked |
|---|---|
| macOS | ~/Library/Mobile Documents/com~apple~CloudDocs/xLights/, ~/Documents/xLights/ |
| Windows | ~/Documents/xLights/ |
| Linux | ~/Documents/xLights/, ~/xLights/, /opt/xLights/ |
It looks for directories containing xlights_rgbeffects.xml (the file xLights creates in every show folder).
If auto-detection doesn't find your folders, create or edit ~/.xlights-mcp/config.json:
{
"show_folders": {
"christmas": "/path/to/your/xLights/Christmas",
"halloween": "/path/to/your/xLights/Halloween"
},
"active_show": "christmas",
"fpp": {
"host": "fpp.local",
"port": 80
}
}
Step 4: Connect to your AI tool
The server uses stdio transport ā your AI tool launches it as a subprocess.
<details> <summary><strong>GitHub Copilot CLI</strong></summary>
Add to ~/.copilot/mcp-config.json:
{
"mcpServers": {
"xlights": {
"command": "uv",
"args": ["run", "--directory", "/path/to/xlights-mcp-server", "xlights-mcp-server"]
}
}
}
Restart Copilot CLI after saving. </details>
<details> <summary><strong>Claude Desktop</strong></summary>
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"xlights": {
"command": "uv",
"args": ["run", "--directory", "/path/to/xlights-mcp-server", "xlights-mcp-server"]
}
}
}
Restart Claude Desktop after saving. </details>
<details> <summary><strong>VS Code + Copilot Chat</strong></summary>
Add to your VS Code settings.json:
{
"mcp": {
"servers": {
"xlights": {
"command": "uv",
"args": ["run", "--directory", "/path/to/xlights-mcp-server", "xlights-mcp-server"]
}
}
}
}
</details>
<details> <summary><strong>Cursor</strong></summary>
Add to Cursor MCP settings (Settings ā MCP Servers ā Add):
- Name: xlights
- Command:
uv - Args:
run --directory /path/to/xlights-mcp-server xlights-mcp-server</details>
<details> <summary><strong>Other MCP clients</strong></summary>
Any tool that supports the Model Context Protocol can use this server. Point it at:
command: uv
args: run --directory /path/to/xlights-mcp-server xlights-mcp-server
transport: stdio
</details>
Replace /path/to/xlights-mcp-server with the actual path where you cloned the repo.
Usage
Once connected, interact with the server through natural language in your AI tool. Here are some example workflows:
Explore your show
> List my xLights shows
> Switch to the Halloween show
> List all my light models
> Show me the controllers
> What sequences do I have?
> Inspect the "Deck The Halls" sequence
Analyze a song
> Analyze the song ~/Music/Jingle Bell Rock.mp3
> Show me the song structure for ~/Music/Monster Mash.mp3
> Get the beat map for this song
> What's the energy profile look like?
Generate a sequence
> Create a sequence for ~/Music/Jingle Bell Rock.mp3
> Create a sequence for ~/Music/Jingle Bell Rock.mp3 using red and green colors
> Preview what a sequence would look like for this song before creating it
When generating, you'll be asked to choose a mode:
- auto ā fully automatic, AI picks effects and colors
- guided ā see the song structure first, then choose effects per section
- template ā apply saved effect recipes to detected sections
Import a community sequence
> Import the sequence ~/Downloads/Holly Jolly Christmas SD.zip to my show
> Import ~/Downloads/Christmas Time.xsq and show me the model mapping
> Import this sequence but map "Arch Left" to my "Arches-1" model
The importer supports both standalone .xsq files and .zip packages (which include audio, video assets, and the source show's model data). It automatically matches models from the imported sequence to your layout using:
- Exact name match ā identical model names
- Similar words ā shared words like "snowflake", "arch", "tree"
- Model type ā same
display_astype (e.g., both Arches) - Pixel count ā within 70% of each other
- Manual overrides ā you choose specific mappings
Manage FPP (when controllers are online)
> Check the FPP status
> List playlists on FPP
> Start the Christmas playlist
> Stop playback
Available Tools
Show Management
| Tool | Description |
|---|---|
list_shows |
List all configured xLights show folders |
switch_show |
Switch the active show folder |
list_models |
List all light models with type, controller, and category info |
list_controllers |
List controllers with IPs, protocols, and channel counts |
list_sequences |
List all .xsq sequence files in the active show |
inspect_sequence |
Show song info, duration, effects, and models used in a sequence |
list_effects |
List all available xLights effects with descriptions |
Audio Analysis
| Tool | Description |
|---|---|
analyze_song |
Full audio analysis: beats, structure, spectrum, energy |
get_song_structure |
Detect verse/chorus/bridge/intro/outro sections |
get_beat_map |
Get beat timestamps, downbeats, tempo, and onsets |
get_energy_profile |
Get loudness curve and bass/mid/high frequency band energy |
Sequence Generation
| Tool | Description |
|---|---|
create_sequence |
Generate a .xsq file from an .mp3 with effects on all models |
preview_plan |
Preview the generation plan without writing a file |
Sequence Import & Remapping
| Tool | Description |
|---|---|
import_sequence |
Import a .xsq or .zip sequence package and remap models to your layout |
FPP Integration
| Tool | Description |
|---|---|
fpp_status |
Check FPP connection and playback state |
fpp_upload_sequence |
Upload .fseq and audio to FPP |
fpp_list_playlists |
List all playlists on FPP |
fpp_start_playlist |
Start a playlist (with optional repeat) |
fpp_stop |
Stop current playback |
How It Works
Effect Selection Logic
The server maps model types to appropriate effects:
| Model Type | Best Effects |
|---|---|
| Arches | SingleStrand, Chase, ColorWash, Morph |
| Tree | Spirals, Pinwheel, Meteors, Circles |
| Single Line | Chase, Morph, SingleStrand, Shimmer |
| Poly Line | Chase, SingleStrand, Twinkle, Morph |
| Window Frame | Marquee, ColorWash, On, Curtain |
| Custom shapes | Shockwave, Circles, Plasma, Twinkle, Warp |
And maps musical features to effect choices:
| Musical Feature | Effects |
|---|---|
| Strong beats | Shockwave, Morph, Strobe |
| Rhythmic passages | SingleStrand, Chase, Bars, Marquee |
| High energy (chorus) | Chase, Meteors, SingleStrand |
| Low energy (verse) | Twinkle, Shimmer, ColorWash, Snowflakes |
| Sustained notes | Plasma, Pinwheel, Spirals, Galaxy |
| Transitions | Warp, Curtain, Morph |
| Intro/Outro | Curtain, ColorWash, Twinkle |
File Format
Generated .xsq files are standard xLights XML containing:
<head>ā song metadata, media file path, duration, timing (25ms frames)<ColorPalettes>ā themed color palettes for effects<EffectDB>ā deduplicated effect parameter definitions<DisplayElements>ā all models included in the sequence<ElementEffects>ā effect placements per model, per layer, with timing
Project Structure
xlights-mcp-server/
āāā pyproject.toml
āāā README.md
āāā src/xlights_mcp/
ā āāā server.py # MCP server entry point & tool definitions
ā āāā config.py # Configuration management
ā āāā audio/
ā ā āāā analyzer.py # Full analysis pipeline orchestrator
ā ā āāā beats.py # Beat/tempo/onset detection (librosa + madmom)
ā ā āāā structure.py # Song section detection (verse/chorus/bridge)
ā ā āāā spectrum.py # Frequency band & energy analysis
ā ā āāā separator.py # Demucs stem separation (optional)
ā āāā xlights/
ā ā āāā show.py # Show folder parser (networks + models XML)
ā ā āāā xsq_reader.py # Parse existing .xsq sequences
ā ā āāā xsq_writer.py # Generate .xsq XML files
ā ā āāā effects.py # Effect library & model/music mappings
ā ā āāā palettes.py # Color palette definitions & themes
ā ā āāā models.py # Data models (Controller, LightModel, etc.)
ā āāā sequencer/
ā ā āāā engine.py # Sequence generation engine (auto/guided/template)
ā āāā fpp/
ā āāā client.py # FPP REST API client
ā āāā upload.py # Sequence upload to FPP
ā āāā schedule.py # Schedule management
āāā tests/
Troubleshooting
MCP server not loading
- Verify your MCP config file is valid JSON (no comments, no trailing commas)
- Check the
--directorypath points to the repo root (wherepyproject.tomlis) - Restart your AI tool after config changes
- Test manually:
cd /path/to/xlights-mcp-server && uv run xlights-mcp-serverā should start without errors
"No xLights show folders found"
- Make sure xLights is installed and you've opened it at least once (it creates
xlights_rgbeffects.xmlin each show folder) - If your show folder is in a non-standard location, add it to
~/.xlights-mcp/config.json
"No models found" error
- Verify the show folder contains
xlights_networks.xmlandxlights_rgbeffects.xml - Use
list_showsto check which show is active and whether the path exists
Audio analysis is slow
- First run downloads librosa data (~10MB); subsequent runs are faster
- Demucs stem separation takes 30-60s per song on CPU; results are cached
- Without optional deps, analysis takes ~5s per song
Generated sequence looks wrong in xLights
- The
.xsqis a starting point ā tweak effects, timing, and palettes in xLights - Use
inspect_sequenceto review what was generated before opening
FPP connection fails
- Verify FPP is powered on and on the same network
- Check the hostname/IP in
~/.xlights-mcp/config.json - FPP tools gracefully report connection errors; core generation works fully offline
License
MIT
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.