Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI agents to control Homey smart home devices, trigger flows, and query zones via the Homey API.

README.md

Homey MCP Server

This is an MCP server for Homey (by Athom) that allows AI agents to control smart home devices, trigger flows, and query zones.

Prerequisites

  • Homey Pro or Homey Cloud
  • Homey Personal Access Token (API Key). You can create one in the Homey Web App under Settings → API Keys.

Installation

  1. Clone or copy this directory.
  2. Run npm install.
  3. Create a .env file based on .env.example:
   HOMEY_TOKEN=your_token_here

Usage

Connecting with Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "homey": {
      "command": "node",
      "args": ["/Users/XX/.gemini/antigravity/scratch/homey-mcp/index.js"],
      "env": {
        "HOMEY_TOKEN": "YOUR_TOKEN_HERE"
      }
    }
  }
}

Connecting with ChatGPT Desktop

ChatGPT (macOS/Windows) supports MCP servers via Developer Mode.

  1. Open ChatGPT Desktop.
  2. Go to SettingsAppsAdvanced settings.
  3. Enable Developer Mode.
  4. Click Create app (or "Add App") and configure a connection:
  • Name: Homey
  • URL: http://localhost:3000 (if running locally as an HTTP/SSE server) or use the Claude-style local command if supported in your version.

[!NOTE] ChatGPT currently primarily supports MCP over SSE (HTTP). To use this as a local command-line tool like in Claude, you may need a bridge or for ChatGPT to fully roll out stdio support.

Connecting with ChatGPT (Web/Custom GPTs)

To use Homey MCP in the ChatGPT web interface:

  1. You must host this MCP server on a public URL (e.g., via ngrok or a VPS).
  2. Use the Actions feature in a Custom GPT to connect to your MCP server's OpenAPI spec or SSE endpoint.

Available Tools (19 Total)

🏠 Devices & Control

  • homey_list_devices: List all devices with their current states (ID, Name, Zone, Class, Capabilities).
  • homey_get_device: Get full details for a single device by its ID.
  • homey_get_sensor_readings: Get current readings from all sensors (temperature, humidity, motion, etc.) across the home.
  • homey_find_devices_by_zone: List all devices in a specific room or floor.
  • homey_control_lights_in_zone: Bulk control for all lights in a specific zone (Turn on/off).
  • homey_set_capability: Set a specific capability value (e.g., onoff, dim, target_temperature).

🚀 Flows & Automation

  • homey_list_flows: List all standard flows.
  • homey_list_advanced_flows: List all Advanced Flows.
  • homey_run_flow: Trigger a standard flow by its ID.
  • homey_run_advanced_flow: Trigger an Advanced Flow by its ID.
  • homey_get_flow: Get full configuration details for a specific flow.
  • homey_get_flow_folders: List the folder structure used to organize flows.

📍 Zones

  • homey_list_zones: List all zones (rooms/floors) and their hierarchy.

🧠 Logic & Flow Cards

  • homey_get_flow_cards: List available flow cards (triggers, conditions, actions) on the system.
  • homey_run_flow_card_action: Execute a specific flow card action directly without needing a flow.
  • homey_get_device_flow_capabilities: Identify which flow cards are applicable to a specific device.

📊 Data & Insights

  • homey_get_energy_data: Discover and list available energy/power logs.
  • homey_get_device_insights: Fetch historical data logs for any device capability over a period (today, last7days, etc.).
  • homey_get_live_insights: Access real-time dashboard data for device capabilities.

Troubleshooting

"HomeyAPI.createCloudAPI is not a function"

This usually happens if the Personal Access Token is used without a HOMEY_IP. Ensure you provide HOMEY_IP for Homey Pro local connections. For Homey Cloud, Ensure your token is valid and specifically created for the Web API.

Connection Closed / MCP Error

If the server fails to connect to Homey, it will now start gracefully but return an error message when you try to use a tool. Check the console logs (stderr) for the specific connection error.

Environment Variables

If running via Claude Desktop, ensure the env section in your config contains the correct HOMEY_TOKEN and optionally HOMEY_IP.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use AI & ML servers.