Homey MCP Server

Homey MCP Server

Enables AI assistants to control and query smart home devices through Homey Pro via an HTTP-based MCP server.

Category
Visit Server

README

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-homey

2. Get Your Authentication Token

You need a Homey Bearer Token for secure API access:

  1. Login to my.homey.app
  2. Go to Settings โ†’ API Key
  3. Create a new API key with at least the homey.app scope

3. Configure Your AI Assistant

For Claude Desktop

Note: Claude Desktop does not currently support HTTP-based MCP servers directly. We use mcp-remote as 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:

  1. Completely quit and reopen Claude Desktop for changes to take effect.
  2. 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?"

๐Ÿ“‹ Requirements

  • Homey Pro with local network access (Homey Cloud not supported)
  • Node.js 16+ and Homey CLI: npm install -g homey
  • Homey 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_flow tool 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

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured