Smart lighting control
## Philips Hue MCP Server: Smart Lighting Control The **Philips Hue MCP Server** integrates Philips Hue smart lighting into Google Antigravity, enabling AI-assisted light control, scene management, and lighting automation. ### Why Philips Hue MCP? - **Quality Lighting**: Premium smart bulbs with excellent color accuracy - **Bridge Integration**: Direct integration with Hue Bridge - **Entertainment**: Sync lights with music and movies - **Accessories**: Support for switches, sensors, and accessories - **Automation**: Time and presence-based automations ### Key Features #### 1. Light Control ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Turn on bedroom lights at 50% brightness with warm white color" }] ) ``` #### 2. Scenes ```python # Activate scenes response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Activate the Relax scene in the living room" }] ) ``` #### 3. Groups ```python # Manage groups response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "List all rooms and zones, and turn off all lights in upstairs zone" }] ) ``` #### 4. Schedules ```python # Create schedules response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create schedule to gradually brighten bedroom lights at 7 AM" }] ) ``` ### Configuration ```json { "mcpServers": { "philips-hue": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-philips-hue"], "env": { "HUE_BRIDGE_IP": "192.168.1.100", "HUE_USERNAME": "your-api-username" } } } } ``` ### Use Cases **Smart Lighting**: Control Hue lights throughout your home. **Ambiance**: Set mood lighting for any occasion. **Wake-Up Routines**: Gentle wake-up with gradual lighting. **Entertainment**: Sync lights with movies and music. The Philips Hue MCP Server brings smart lighting control into your workflow.
{
"mcpServers": {
"philips-hue": {
"mcpServers": {
"hue": {
"env": {
"HUE_USERNAME": "YOUR_USERNAME",
"HUE_BRIDGE_IP": "YOUR_BRIDGE_IP"
},
"args": [
"-y",
"hue-mcp"
],
"command": "npx"
}
}
}
}
}