Open-source home automation system.
## Domoticz MCP Server: Home Automation System The **Domoticz MCP Server** integrates Domoticz home automation into Google Antigravity, enabling AI-assisted smart home control, device management, and automation scripting. ### Why Domoticz MCP? - **Protocol Support**: Z-Wave, Zigbee, WiFi, and many more protocols - **Device Support**: Thousands of compatible smart home devices - **Automation**: Create complex automation rules and scripts - **Open Source**: Free and open-source home automation - **Plugins**: Extensible with Python plugins ### Key Features #### 1. Device Control ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "List all Domoticz devices and turn on living room lights" }] ) ``` #### 2. Sensor Data ```python # Read sensors response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Get current temperature and humidity from all sensors" }] ) ``` #### 3. Scenes ```python # Activate scenes response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Activate the movie night scene in Domoticz" }] ) ``` #### 4. Automation ```python # Create rules response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create automation to turn off lights when motion sensor is inactive" }] ) ``` ### Configuration ```json { "mcpServers": { "domoticz": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-domoticz"], "env": { "DOMOTICZ_URL": "http://localhost:8080", "DOMOTICZ_USERNAME": "admin", "DOMOTICZ_PASSWORD": "your-password" } } } } ``` ### Use Cases **Smart Home**: Control and automate your smart home. **Energy Monitoring**: Track energy usage across devices. **Security**: Integrate security sensors and cameras. **Climate Control**: Automate heating and cooling systems. The Domoticz MCP Server brings open-source home automation into your workflow.
{
"mcpServers": {
"domoticz": {}
}
}