Home Automation MCP Server
A comprehensive smart home automation system that allows AI assistants to control and monitor smart home devices through natural language using the Model Context Protocol (MCP).
README
Home Automation MCP Server
A comprehensive smart home automation system that allows AI assistants to control and monitor smart home devices through natural language using the Model Context Protocol (MCP).
๐๏ธ Architecture
AI Assistant (Claude Desktop/VS Code)
โ stdio MCP Protocol
FastMCP Server
โ
SQLite Database โ [Real-time Polling] โ FastAPI Server
โ WebSocket
React Frontend
Key Components:
- FastMCP Server - Handles AI interactions via stdio protocol
- FastAPI Server - REST API + WebSocket for real-time frontend updates
- SQLite Database - Shared state between both servers with timestamp-based change detection
- React Frontend - Real-time dashboard with WebSocket updates
โจ Features
MCP Tools (9 Tools)
- control_device - Universal device control (on/off/set/toggle)
- get_device_status - Query device states
- get_sensor_reading - Read temperature, motion sensors
- set_home_mode - Execute scenes (home/away/sleep/vacation)
- get_home_mode - Check current mode
- feed_fish - Trigger fish feeder
- water_plants - Control sprinkler system
- start_ev_charging / stop_ev_charging - EV charger control
Supported Devices (24+ Sample Devices)
- ๐ก Lights (with brightness control)
- ๐ก๏ธ Thermostat (temperature + mode control)
- ๐ Locks
- ๐ช Blinds (with position control)
- ๐จ Fans (with speed control)
- ๐ Garage door
- ๐ Fish feeder
- ๐ง Sprinkler system
- ๐ EV charger
- ๐ก๏ธ Temperature sensors
- ๐๏ธ Motion sensors
Home Modes
- Home - Welcome mode (lights on, 72ยฐF)
- Away - Security mode (lights off, locks engaged, 65ยฐF)
- Sleep - Night mode (bedroom dim 20%, doors locked, 68ยฐF)
- Vacation - Extended away (everything secured, 60ยฐF)
๐ Quick Start
1. Install Dependencies
pip install -r requirements.txt
cd frontend
npm install # First time only
2. Start the System
Option A: Using the Menu (Easiest)
start.bat
Then select what to start from the menu.
Option B: Direct Commands (Recommended for Development)
Open 2 separate terminals:
# Terminal 1: Start API Server (Backend)
python app/main.py
# โ Available at http://localhost:8000
# Terminal 2: Start Frontend (Dashboard)
cd frontend
npm run dev
# โ Available at http://localhost:5173
3. Configure MCP Server for Claude Desktop (Optional)
Run the configuration helper:
python app/stdio_config.py
Copy the output and add it to your Claude Desktop config file:
- Windows:
%APPDATA%/Claude/claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
Example configuration:
{
"mcpServers": {
"home-automation": {
"command": "python",
"args": ["C:/path/to/home_automation/app/mcp_server_stdio.py"]
}
}
}
Restart Claude Desktop after adding the configuration.
๐ฌ Example AI Interactions
Device Control
"Turn on the living room lights to 75%"
"Set bedroom temperature to 72 degrees"
"Close all the blinds"
"Lock all doors"
Status Queries
"What's the status of my home?"
"What's the temperature in the bedroom?"
"Are all the doors locked?"
Home Modes
"I'm leaving" โ Sets away mode
"I'm going to bed" โ Sets sleep mode
"Good morning" โ Sets home mode
Special Actions
"Feed the fish"
"Water the front yard for 10 minutes"
"Start charging my car"
๐ Project Structure
home_automation/
โโโ app/
โ โโโ config.py # Configuration settings
โ โโโ main.py # FastAPI server
โ โโโ mcp_server_stdio.py # FastMCP server with tools
โ โโโ stdio_config.py # MCP configuration helper
โ โโโ db/
โ โ โโโ schema.sql # Database schema
โ โ โโโ database.py # Database manager
โ โ โโโ seed_data.py # Sample devices
โ โโโ models/
โ โ โโโ device.py # Device models
โ โโโ schemas/
โ โ โโโ responses.py # API response schemas
โ โโโ utils/
โ โโโ websocket_manager.py # WebSocket manager
โโโ frontend/ # React dashboard
โโโ requirements.txt
โโโ home_automation.db # SQLite database (auto-created)
โโโ README.md
โโโ DEVELOPMENT.md # Development guide
๐ง API Endpoints
REST API
GET /- API informationGET /api/devices- Get all devices (supports?room=and?type=filters)GET /api/rooms- Get list of roomsGET /api/stats- Get dashboard statisticsWebSocket /ws- Real-time device updates
WebSocket Messages
From Server:
{
"type": "device_update",
"device_id": "living_room_light_main",
"state": "on",
"properties": {"brightness": 75}
}
{
"type": "mode_change",
"mode": "away"
}
{
"type": "full_refresh"
}
๐งช Testing
Test API Server
curl http://localhost:8000
curl http://localhost:8000/api/devices
curl http://localhost:8000/api/stats
Test MCP Tools Directly
python app/mcp_server_stdio.py
Test with MCP Inspector
npx @modelcontextprotocol/inspector python app/mcp_server_stdio.py
Open browser to: http://localhost:6274
๐ All Available Commands
| Command | Purpose | URL |
|---|---|---|
start.bat |
Menu-driven launcher | - |
python app/main.py |
Start API server | http://localhost:8000 |
cd frontend && npm run dev |
Start frontend | http://localhost:5173 |
python app/mcp_server_stdio.py |
Start MCP server | stdio only |
npx @modelcontextprotocol/inspector python app/mcp_server_stdio.py |
Test with inspector | http://localhost:6274 |
python app/stdio_config.py |
Get Claude config | - |
๐ Real-time Updates Flow
- AI assistant calls MCP tool (e.g.,
control_device) - MCP server updates SQLite database with timestamp
- FastAPI server detects timestamp change (polls every 100ms)
- FastAPI broadcasts update via WebSocket to all connected clients
- Frontend receives update and re-renders affected devices
- Total latency: < 300ms
๐ Performance Metrics
- โ Database queries: < 10ms
- โ MCP tool execution: < 100ms
- โ Change detection: 100ms polling
- โ WebSocket broadcast: < 50ms
- โ End-to-end update: < 300ms
- โ Concurrent WebSocket connections: 100+
๐ Troubleshooting
MCP Server Not Connecting
- Check Claude Desktop config file path
- Verify Python path in configuration
- Restart Claude Desktop after config changes
Frontend Not Updating
- Verify FastAPI server is running on port 8000
- Check browser console for WebSocket errors
- Ensure CORS origins include your frontend URL
Database Locked Errors
- Verify only one process is accessing the database at a time
- WAL mode is enabled automatically in database.py
Port Already in Use
# Windows PowerShell - Kill process on port
Get-NetTCPConnection -LocalPort 8000 |
Select-Object -ExpandProperty OwningProcess |
ForEach-Object { Stop-Process -Id $_ -Force }
๐ ๏ธ Development
Add New Device Type
- Add device to
app/db/seed_data.py - Update type hints in
app/models/device.py - Add icon in frontend
DeviceCard.jsx
Add New MCP Tool
- Add
@mcp.tool()decorated function inapp/mcp_server_stdio.py - Include database operations
- Document in docstring for AI assistant context
For detailed development information, see DEVELOPMENT.md
๐ Resources
๐ License
MIT License - See LICENSE file for details
๐ค Contributing
Contributions welcome! Please open an issue or submit a pull request.
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
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
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.