twinkly-mcp
Allows AI agents to control Twinkly smart lights, including turning them on/off, setting colors, changing brightness, and switching effects via natural language.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@twinkly-mcpTurn on the Christmas tree lights"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
twinkly-mcp
A Model Context Protocol (MCP) server that gives AI agents control of your Twinkly lights.
Point an MCP-capable assistant (Claude Desktop, Claude Code, etc.) at this server and ask it to turn your lights on, set a color, change brightness, or switch effects — in plain language.
It's built on top of the @twinklyjs/twinkly library, which talks to Twinkly devices over their local network API.
What you can do
Ask your assistant things like:
"Turn the Christmas tree lights on / off"
"Make the lights warm white at 40% brightness"
"Set them to green"
"Switch to the sparkle effect"
"What are my lights doing right now?"
"Discover my Twinkly devices"
Related MCP server: lifx-mcp-server
Requirements
Node.js 20+
One or more Twinkly devices on the same local network
An MCP client (e.g. Claude Desktop or Claude Code)
Installation
npx twinkly-mcp(Or clone this repo and run npm install && npm run build, then node dist/index.js.)
Configuration
The server is configured via environment variables (CLI flags and an optional JSON config file are also supported — see CLAUDE.md).
Devices
Variable | Description |
| IP address of a single device (e.g. |
| JSON map of named devices, e.g. |
| Name of the device to use when a request doesn't specify one. |
|
|
Don't know your device's IP? Enable discovery, or just ask the assistant to "discover my Twinkly devices".
Transport, safety & diagnostics
Variable | Default | Description |
|
|
|
|
| Port for the HTTP transport. Binds to |
|
|
|
| (all) | Comma-separated allow-list of tool groups: |
|
|
|
|
| Per-request timeout. |
|
|
|
Tools
Every device-targeting tool takes an optional device argument (a name from list_devices); omit it to use the default device.
Discovery & status (read-only)
Tool | What it does |
| List the devices the server knows about. |
| Scan the network for Twinkly devices and add new ones. |
| Hardware/firmware details (product, model, LED count, MAC, uptime…). |
| Quick overview: mode, color, timer, music, filters. |
| Current mode, brightness, saturation, and color in one call. |
Control
Tool | What it does |
| Turn the lights on (movie mode) or off. |
| Set the operation mode directly ( |
| Set a static color ( |
| Set brightness 0–100. |
| Set saturation 0–100. |
| List predefined effects / play one by id. |
| List saved movies / play one by id. |
Admin (gated behind TWINKLY_ALLOW_ADMIN=true)
Tool | What it does |
| Rename a device. |
| Schedule daily on/off times. |
| Push one realtime frame of per-LED RGB values over UDP. |
The riskier device operations the underlying library can do (firmware, WiFi/network, MQTT, mic, factory reset) are intentionally not exposed.
Connecting an MCP client
Claude Desktop / Claude Code (stdio)
Add the server to your MCP client configuration:
{
"mcpServers": {
"twinkly": {
"command": "npx",
"args": ["twinkly-mcp"],
"env": {
"TWINKLY_IP": "192.168.1.50"
}
}
}
}Restart the client, and the Twinkly tools will be available to the assistant.
Streamable HTTP
Run the server with the HTTP transport:
TWINKLY_IP=192.168.1.50 TWINKLY_TRANSPORT=http TWINKLY_PORT=3000 npx twinkly-mcpIt serves the MCP endpoint at http://127.0.0.1:3000/mcp. Point an HTTP-capable MCP client at that URL.
How it works
AI assistant ──MCP──> twinkly-mcp ──local HTTP/UDP──> Twinkly device(s)The server translates natural-language requests into MCP tool calls, which it maps onto the Twinkly device API on your local network. Your device IPs and tokens stay local — nothing is sent to the cloud by this server.
Development
npm install
npm run dev # run in watch mode (tsx)
npm run build # compile to dist/
npm test # run the test suite
npm run test:coverage
# Real-device smoke test (read-only; skipped without a device):
TWINKLY_IP=192.168.1.50 npx vitest run src/integration.test.tsSee CLAUDE.md for architecture, the full configuration reference, and the build history.
License
ISC
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/paztek/twinkly-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server