io.github.Koneisto/HomeAssistant-Light-MCP

编码与调试

by koneisto

Control Home Assistant lights and scenes. Lights only by design for safety.

什么是 io.github.Koneisto/HomeAssistant-Light-MCP

Control Home Assistant lights and scenes. Lights only by design for safety.

README

Home Assistant Light MCP

npm version CI License: MIT

A Model Context Protocol (MCP) server for controlling Home Assistant lights and managing scenes. Complements the official Home Assistant MCP by providing detailed light control with colors and scene management.

Like this project? Give it a ⭐ on GitHub and help others discover it!

Design Philosophy: Lights Only

This MCP intentionally controls only lights - not switches, not other entities. This is a deliberate safety decision:

  • Switches can control critical systems - HVAC, heaters, air conditioning, water pumps
  • Accidental activation could be dangerous - turning on a heater while away, disabling AC in summer
  • Lights are safe - worst case is lights turn on/off unexpectedly

If you need to control switches or other entities, use the official Home Assistant MCP or automations with appropriate safeguards.

Features

  • Show Lights - View all lights with full details:
    • State, brightness, RGB colors, color temperature
    • Color mode and supported modes
    • Available effects (colorloop, etc.)
    • Color temperature range (min/max Kelvin)
  • Adjust Light - Control lights (on/off, brightness, RGB color, color temperature, effects)
  • Create Scene - Save current lighting as a scene with two modes:
    • exclusive - Turns off other lights when activated
    • additive - Only affects lights in the scene
  • List Scenes - View all saved scenes
  • Activate Scene - Activate a saved scene (with IKEA Tradfri support)
  • Update Scene - Update an existing scene with current light states
  • Delete Scene - Remove a scene
  • Blackout - Turn off all lights (with optional exclusions)

Why This MCP?

The official Home Assistant MCP is limited - it can't show light colors or provide detailed state information. This MCP fills that gap:

FeatureOfficial HA MCPThis MCP
Show light colorsNoYes
Show brightnessLimitedFull detail
Show color modesNoYes
Show effectsNoYes
Set RGB colorsNoYes
Color temperatureNoYes
Set effectsNoYes
Create scenesNoYes
IKEA Tradfri fixesNoYes

Installation

bash
npm install -g ha-mcp-server

Or clone and build:

bash
git clone https://github.com/Koneisto/HomeAssistant-Light-MCP.git
cd HomeAssistant-Light-MCP
npm install
npm run build

Configuration

Add to your MCP client configuration:

Claude Desktop

Edit config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Option 1: Using npx (recommended, no global install needed)

json
{
  "mcpServers": {
    "ha-light-scenes": {
      "command": "npx",
      "args": ["-y", "ha-mcp-server"],
      "env": {
        "HA_URL": "http://your-home-assistant-ip:8123",
        "HA_TOKEN": "your-long-lived-access-token"
      }
    }
  }
}

Option 2: Global install

bash
npm install -g ha-mcp-server
json
{
  "mcpServers": {
    "ha-light-scenes": {
      "command": "ha-mcp-server",
      "env": {
        "HA_URL": "http://your-home-assistant-ip:8123",
        "HA_TOKEN": "your-long-lived-access-token"
      }
    }
  }
}

Other MCP Clients

The same configuration structure works with any MCP-compatible client.

Get your Home Assistant token

  1. Go to Home Assistant → Profile (bottom left)
  2. Scroll to "Long-Lived Access Tokens"
  3. Click "Create Token"
  4. Copy the token

Usage Examples

Show lights

"Show me all the lights"

"What lights are on?"

Control lights

"Turn on living room light"

"Set bedroom to 50% brightness"

"Make the kitchen light red"

"Set studio lights to warm white"

"Start colorloop on the hallway light"

Create a scene

"Save this as Movie Night"

Activate a scene

"Activate Movie Night"

Update a scene

"Update Evening Lights with current settings"

Blackout

"Turn off all lights"

"Turn off all lights except the balcony"

Tools Reference

ToolDescription
scene_show_lightsShow all lights with state, brightness, colors, effects, color modes
scene_adjust_lightControl a light (on/off, brightness, color, effects)
scene_createCreate a new scene from current light states
scene_listList all scenes
scene_activateActivate a scene
scene_updateUpdate existing scene with current lights
scene_deleteDelete a scene
scene_blackoutTurn off all lights (supports exclusions)
scene_diagnoseDiagnose lights and scenes, check connectivity
scene_fixFix scene problems, restore from backup
scene_configureSet Home Assistant URL and token

Light Properties

scene_show_lights returns:

  • state - on/off
  • brightness / brightness_pct - 0-255 / 0-100%
  • rgb_color - [R, G, B] values
  • color_temp_kelvin - Color temperature
  • color_mode - Current mode (xy, color_temp, rgb, hs)
  • supported_color_modes - What the light supports
  • effect - Active effect (if any)
  • effect_list - Available effects
  • color_temp_range - Min/max Kelvin (if supported)

Scene Modes

  • Exclusive: Turns off all lights not in the scene. Good for room-specific scenes.
  • Additive: Only affects lights in the scene. Good for accent lighting.

Local Backup & Multi-Instance Support

This MCP maintains a local backup of scenes you create:

  • Automatic backup: Scenes are saved to ~/.config/ha-mcp-server/scenes-backup.json
  • Multi-instance aware: Detects when another MCP instance (or HA UI) modifies scenes
  • Smart conflict resolution: Merges changes from multiple sources
  • Restore capability: Can restore scenes if Home Assistant loses them

Diagnostics (scene_diagnose)

Analyzes your lights and scenes to identify problems:

  • Tests light connectivity and response times
  • Detects connection types (Zigbee, WiFi, Bluetooth)
  • Finds scenes with null values or missing lights
  • Compares Home Assistant state with local backup
  • Reports new lights not yet in exclusive scenes

Example: "Run diagnostics on my lights"

Fix & Repair (scene_fix)

Four actions to repair scene problems:

ActionDescription
fix_allAuto-fix all scenes: remove null values, add missing lights to exclusive scenes
fix_sceneFix a specific scene by name
test_sceneActivate a scene and report what went wrong
restore_from_backupRestore scenes from local backup if Home Assistant lost them

Example: "Fix all my scenes" or "Restore Evening Lights from backup"

IKEA Tradfri Support

IKEA Tradfri lights have a known issue when switching between RGB color mode and color temperature (Kelvin) mode. The bulbs need time to process the mode change before accepting brightness or color values.

Note: Home Assistant's native scenes don't work reliably with Tradfri lights due to these timing issues. This MCP provides a workaround by managing scenes independently with proper delays.

This MCP automatically handles Tradfri lights by:

  • Detecting Tradfri devices by manufacturer name
  • Adding a 500ms delay between mode switch and subsequent commands
  • Properly sequencing color/temperature changes with brightness adjustments

Without these fixes, Tradfri lights often ignore commands or produce incorrect colors when switching modes.

Security

Your Data Stays Local

  • All communication happens directly between your computer and your Home Assistant instance
  • No data is sent to external servers or third parties
  • The MCP server runs locally on your machine via stdio (no open network ports)

No Tracking

  • We don't care enough to track you

Token Safety

  • Your Home Assistant token is stored only on your local machine
  • Use environment variables to avoid storing tokens in files
  • The token is only sent to your own Home Assistant instance
  • You can revoke the token anytime from Home Assistant settings

What This Server Can Access

  • Only lights and scenes in your Home Assistant
  • Cannot access other Home Assistant entities (sensors, locks, cameras, etc.)
  • Cannot make changes outside of light control and scene management

Contributing

Found a bug or have an idea? Open an issue or submit a pull request!

License

MIT - Use freely, attribution appreciated but not required.

Author

Koneisto


Built by people with questionable priorities

常见问题

io.github.Koneisto/HomeAssistant-Light-MCP 是什么?

Control Home Assistant lights and scenes. Lights only by design for safety.

相关 Skills

网页构建器

by anthropics

Universal
热门

面向复杂 claude.ai HTML artifact 开发,快速初始化 React + Tailwind CSS + shadcn/ui 项目并打包为单文件 HTML,适合需要状态管理、路由或多组件交互的页面。

在 claude.ai 里做复杂网页 Artifact 很省心,多组件、状态和路由都能顺手搭起来,React、Tailwind 与 shadcn/ui 组合效率高、成品也更精致。

编码与调试
未扫描172.7k

网页应用测试

by anthropics

Universal
热门

用 Playwright 为本地 Web 应用编写自动化测试,支持启动开发服务器、校验前端交互、排查 UI 异常、抓取截图与浏览器日志,适合调试动态页面和回归验证。

借助 Playwright 一站式验证本地 Web 应用前端功能,调 UI 时还能同步查看日志和截图,定位问题更快。

编码与调试
未扫描172.7k

前端设计

by anthropics

Universal
热门

面向组件、页面、海报和 Web 应用开发,按鲜明视觉方向生成可直接落地的前端代码与高质感 UI,适合做 landing page、Dashboard 或美化现有界面,避开千篇一律的 AI 审美。

想把页面做得既能上线又有设计感,就用前端设计:组件到整站都能产出,难得的是能避开千篇一律的 AI 味。

编码与调试
未扫描172.7k

相关 MCP Server

GitHub

编辑精选

by GitHub

热门

GitHub 是 MCP 官方参考服务器,让 Claude 直接读写你的代码仓库和 Issues。

这个参考服务器解决了开发者想让 AI 安全访问 GitHub 数据的问题,适合需要自动化代码审查或 Issue 管理的团队。但注意它只是参考实现,生产环境得自己加固安全。

编码与调试
89.7k

by Context7

热门

Context7 是实时拉取最新文档和代码示例的智能助手,让你告别过时资料。

它能解决开发者查找文档时信息滞后的问题,特别适合快速上手新库或跟进更新。不过,依赖外部源可能导致偶尔的数据延迟,建议结合官方文档使用。

编码与调试
60.2k

by tldraw

热门

tldraw 是让 AI 助手直接在无限画布上绘图和协作的 MCP 服务器。

这解决了 AI 只能输出文本、无法视觉化协作的痛点——想象让 Claude 帮你画流程图或白板讨论。最适合需要快速原型设计或头脑风暴的开发者。不过,目前它只是个基础连接器,你得自己搭建画布应用才能发挥全部潜力。

编码与调试
49.9k

评论