Homey MCP Server
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., "@Homey MCP ServerTurn on the living room 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.
Homey MCP Server
Homey Pro App exposing an MCP server over HTTP, enabling AI assistants like Claude to control your smart home.
๐ Quick Setup
1. Install on Homey
git clone https://github.com/verdier/homey-mcp-server.git
cd homey-mcp-server
npm install
npm run install-homey2. Get Your Authentication Token
You need a Homey Bearer Token for secure API access:
Login to my.homey.app
Go to Settings โ API Key
Create a new API key with at least the
homey.appscope
3. Configure Your AI Assistant
For Claude Desktop
Note: Claude Desktop does not currently support HTTP-based MCP servers directly. We use
mcp-remoteas a bridge to connect to this HTTP server.
Add to your configuration file with your Bearer token:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"homey": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://YOUR_HOMEY_IP/api/app/com.verdier.mcp-server/mcp",
"--allow-http",
"--header",
"Authorization:Bearer YOUR_HOMEY_TOKEN"
]
}
}
}Important: After updating the configuration:
Completely quit and reopen Claude Desktop for changes to take effect.
macOS users: On first launch, you may be prompted to allow Claude Desktop to find and communicate with devices on your local network. You must allow this permission and then restart Claude for the connection to work.
For VS Code
Create .vscode/mcp.json in your workspace:
{
"servers": {
"homey": {
"type": "http",
"url": "http://YOUR_HOMEY_IP/api/app/com.verdier.mcp-server/mcp",
"headers": {
"Authorization": "Bearer YOUR_HOMEY_TOKEN"
}
}
}
}Note: Replace YOUR_HOMEY_IP with your Homey's actual IP address and YOUR_HOMEY_TOKEN with your extracted Bearer token.
4. Start Using
Ask your AI: "Turn on the living room lights" or "What's the temperature in the bedroom?"
Related MCP server: matter-controller-mcp
๐ Requirements
Homey Pro with local network access (Homey Cloud not supported)
Node.js 16+ and Homey CLI:
npm install -g homeyHomey Bearer Token for authentication
๐ Available Features
Device Control: List, control, and query all Homey devices
Zone Management: Filter devices by room/zone
Flow Automation: List and view automation flow details
Natural Language: Use conversational commands with AI assistants
โ ๏ธ Known Limitations
Flow Triggering: The
trigger_flowtool is currently not operational due to Homey API cross app limitations.
๐งช Testing
Verify your installation with your Bearer token:
# Test MCP protocol
curl -X POST \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"initialize","id":1}' \
"http://YOUR_HOMEY_IP/api/app/com.verdier.mcp-server/mcp"๐ค Support
Verify your Homey IP address is correct
Ensure Homey Pro is on the same local network
This server cannot be installed
Maintenance
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/verdier/homey-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server