MCP Marketplace
BrowseHow It WorksFor CreatorsDocs
Sign inSign up
MCP Marketplace

The curated, security-first marketplace for AI tools.

Product

Browse ToolsSubmit a ToolDocumentationHow It WorksBlogFAQ

Legal

Terms of ServicePrivacy PolicyCommunity Guidelines

Connect

support@mcp-marketplace.ioTwitter / XDiscord

MCP Marketplace © 2026. All rights reserved.

Back to Browse

Homey Wan Kenobi MCP Server

by Ringosystems
Developer ToolsLow Risk9.5MCP RegistryLocal
Free

Server data from the Official MCP Registry

MCP server for Homey Pro: 60 tools for devices, flows, energy, and Z-Wave/Zigbee diagnostics.

About

MCP server for Homey Pro: 60 tools for devices, flows, energy, and Z-Wave/Zigbee diagnostics.

Security Report

9.5
Low Risk9.5Low Risk

Valid MCP server (2 strong, 3 medium validity signals). 1 known CVE in dependencies Imported from the Official MCP Registry.

3 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

file_system

Check that this permission is expected for this type of plugin.

Unverified package source

We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.

What You'll Need

Set these up before or after installing:

Base URL of your Homey Pro local API, e.g. http://192.168.1.10Optional

Environment variable: HOMEY_ADDRESS

Homey local API key (my.homey.app > Settings > API keys)Required

Environment variable: HOMEY_TOKEN

Documentation

View on GitHub

From the project's GitHub README.

Homey-Wan-Kenobi MCP

CI Docker Pulls License: MIT

MCP server for controlling Homey Pro smart home systems through the Model Context Protocol.

The name nods to Obi-Wan Kenobi, your home's only hope for natural-language control.

60 tools and 3 knowledge prompts for device control, flow authoring, automation, monitoring, troubleshooting, network diagnostics, and self-hosted deployment.

Quick Start

git clone https://github.com/Ringosystems/Homey-Wan-Kenobi-MCP.git
cd Homey-Wan-Kenobi-MCP
npm install
npm run build

Authenticate with your Homey:

npx homey login
npx homey select

Add to your MCP client config (Kiro, Claude Desktop, Cline, etc.):

{
  "mcpServers": {
    "homey": {
      "command": "node",
      "args": ["/path/to/Homey-Wan-Kenobi-MCP/dist/index.js"]
    }
  }
}

Authentication

The server supports two authentication methods:

Homey CLI (recommended) runs npx homey login and npx homey select. The server reads the stored OAuth token from ~/.athom-cli/settings.json automatically.

Local API Key is created at my.homey.app. Set environment variables:

export HOMEY_ADDRESS=http://192.168.1.x
export HOMEY_TOKEN=your-api-key

The local API key method is the recommended choice when running self-hosted in a container, since it does not depend on a mounted CLI settings file.

Self-Hosted (Docker / HTTP)

The image is published at ringosystems/homey-wan-kenobi (mirrored to ghcr.io/ringosystems/homey-wan-kenobi), and the server is listed in the MCP Registry as io.github.Ringosystems/homey-wan-kenobi-mcp. It is built on node:22-alpine, runs as a non-root user, and ships no baked-in secrets. See SECURITY.md for the audit details.

It defaults to the stdio transport so an MCP client can launch it directly, and exposes a long-lived streamable-HTTP service (via supergateway at /mcp, health at /healthz) when you set MCP_TRANSPORT=streamable-http.

Run as an MCP client (stdio)

docker run -i --rm \
  -e HOMEY_ADDRESS=http://192.168.1.x \
  -e HOMEY_TOKEN=your-local-api-key \
  ringosystems/homey-wan-kenobi:latest

Run as an HTTP service

docker run -d -p 8000:8000 \
  -e MCP_TRANSPORT=streamable-http \
  -e HOMEY_ADDRESS=http://192.168.1.x \
  -e HOMEY_TOKEN=your-local-api-key \
  --restart unless-stopped \
  ringosystems/homey-wan-kenobi:latest

Docker Compose

Supply your Homey credentials via a .env file next to docker-compose.yml:

cat > .env <<'EOF'
HOMEY_ADDRESS=http://192.168.1.x
HOMEY_TOKEN=your-local-api-key
EOF

# Pull the published image, or add --build to build locally instead
docker compose up -d

The provided docker-compose.yml references the published image (with build: . as a local-build fallback) and applies container hardening (read-only root filesystem, dropped Linux capabilities, no-new-privileges, and memory/PID limits):

services:
  homey-wan-kenobi:
    image: ringosystems/homey-wan-kenobi:latest
    build: .
    container_name: homey-wan-kenobi
    ports:
      - "8000:8000"
    environment:
      MCP_TRANSPORT: streamable-http
      HOMEY_ADDRESS: "${HOMEY_ADDRESS:-http://192.168.1.x}"
      HOMEY_TOKEN: "${HOMEY_TOKEN:-}"
    restart: unless-stopped
    read_only: true
    tmpfs:
      - /tmp
    security_opt:
      - no-new-privileges:true
    cap_drop:
      - ALL
    mem_limit: 256m
    pids_limit: 128
    healthcheck:
      test: ["CMD", "node", "-e", "fetch('http://localhost:8000/healthz').then(r=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"]
      interval: 30s
      timeout: 5s
      retries: 3
      start_period: 20s

Build locally

docker build -t ringosystems/homey-wan-kenobi .
docker run -d -p 8000:8000 \
  -e MCP_TRANSPORT=streamable-http \
  -e HOMEY_ADDRESS=http://192.168.1.x \
  -e HOMEY_TOKEN=your-local-api-key \
  --restart unless-stopped \
  ringosystems/homey-wan-kenobi

Connecting a client

Point an MCP client at the streamable-HTTP endpoint:

{
  "mcpServers": {
    "homey": {
      "type": "streamable-http",
      "url": "http://your-host:8000/mcp"
    }
  }
}

Check health with curl http://your-host:8000/healthz.

Tools

Devices

ToolDescription
list_devicesList devices with live capability values, filter by zone or class
get_deviceGet full device details and all capability values by ID
search_devicesSearch devices by name, class, or capability
set_device_capabilityControl a device (onoff, dim, target_temperature, volume_set, etc.)

Device & Zone Management

ToolDescription
rename_deviceRename a device
move_device_to_zoneMove a device to a different zone (room)
create_zoneCreate a new zone, optionally nested under a parent

Zones

ToolDescription
list_zonesList all zones (rooms/areas) with their hierarchy

Flows

ToolDescription
list_flowsList simple and advanced flows with enabled/broken status
trigger_flowRun a flow immediately
set_flow_enabledEnable or disable a flow

Flow Authoring

ToolDescription
get_flowGet a standard WHEN/AND/THEN flow definition by ID
create_flowCreate a standard flow from trigger/conditions/actions
update_flowUpdate fields of a standard flow
delete_flowPermanently delete a standard flow
get_advanced_flowGet an Advanced Flow definition (cards, args, connections)
create_advanced_flowCreate an Advanced Flow from a cards graph
update_advanced_flowUpdate an Advanced Flow (replaces the cards graph)
delete_advanced_flowPermanently delete an Advanced Flow

Flow Card Discovery

ToolDescription
list_flow_cardsList trigger/condition/action cards, filtered by substring
get_flow_cardGet one flow card's full definition and argument schema

Logic & Apps

ToolDescription
list_variablesList logic variables with current values
set_variableSet a logic variable value
list_appsList installed apps with version, status, and origin
restart_appRestart a Homey app
enable_appEnable or disable an app
uninstall_appUninstall an app and remove its devices

Insights & Energy

ToolDescription
list_insightsList available insight logs
get_insight_entriesGet historical sensor/meter data over a time range
get_energy_liveLive power consumption by zone and device
get_energy_reportEnergy report for day/week/month/year

Weather, Presence & Location

ToolDescription
get_weatherCurrent weather at Homey's location
get_weather_hourlyHourly weather forecast
get_presenceHome/away and awake/asleep status for all users
set_presenceSet your own presence or sleep state
get_locationHomey's configured geographic location

Alarms & Moods

ToolDescription
list_alarmsList all alarms and timers
set_alarmCreate or update an alarm
delete_alarmDelete an alarm
list_moodsList moods (scenes) per zone
set_moodActivate a mood in a zone

Notifications

ToolDescription
list_notificationsList the 50 most recent notifications
create_notificationSend a notification to the Homey timeline

Network Diagnostics

ToolDescription
diagnose_zigbee_networkZigbee mesh health, per-node last-seen, issues and remediations
diagnose_zwave_networkZ-Wave health, transmit failures, unavailable nodes, remediations
get_zwave_logRaw recent Z-Wave network log for troubleshooting

App Usage Analysis

ToolDescription
analyze_app_usageCross-reference apps against RAM, devices, and flow references to flag removal candidates (advisory, read-only)

System & Infrastructure

ToolDescription
get_system_infoSystem info (version, wifi, hostname, hardware)
list_driversList all available device drivers
get_backup_statusBackup config and last backup time
create_backupSchedule a new backup
get_ledringLED ring screensaver options and current setting
set_ledringSet the LED ring screensaver
get_updatesCheck for system updates and update settings
get_sessionCurrent API session info (user, role, scopes)
reboot_homeyReboot the Homey Pro
get_memory_infoMemory usage by app and component
get_storage_infoStorage usage breakdown
set_system_nameSet the Homey system name

Advanced

ToolDescription
homey_api_callRaw escape hatch to call any Homey Web API endpoint directly

Prompts

Built-in knowledge prompts accessible via the MCP prompts API:

PromptDescription
homey_best_practicesZone architecture, device naming, protocol tips, energy management, security
homey_troubleshootingDiagnosing offline devices, Z-Wave/Zigbee issues, flow debugging, performance
homey_flow_patternsAutomation patterns, naming conventions, anti-patterns to avoid

Development

npm run dev        # Run with tsx (no build step)
npm run build      # Compile TypeScript
npm run lint       # ESLint
npm run typecheck  # TypeScript strict check
npm start          # Run compiled version

Tech Stack

  • TypeScript + Node.js (>=20)
  • homey-api v3, the official Homey Web API client
  • @modelcontextprotocol/sdk v1.29, MCP server (registerTool with ToolAnnotations)
  • zod for parameter validation
  • supergateway for the self-hosted streamable-HTTP transport

Security

The dependency tree, base image, and container configuration are audited with Trivy and npm audit. The published image runs as a non-root user on node:22-alpine with no baked-in secrets, and the production dependencies ship with 0 high or critical advisories. See SECURITY.md for the full audit, accepted residual risks, and how to reproduce the scans.

License

MIT

Reviews

No reviews yet

Be the first to review this server!

0

installs

New

no ratings yet

Is this your server?

Claim ownership to manage your listing, respond to reviews, and track installs from your dashboard.

Claim with GitHub

Sign up with the GitHub account that owns this repo

Links

Source CodeDocumentation

Details

Published June 29, 2026
Version 2.1.2
0 installs
Local Plugin

More Developer Tools MCP Servers

Fetch

Free

by Modelcontextprotocol · Developer Tools

Web content fetching and conversion for efficient LLM usage

80.0K
Stars
5
Installs
5.3
Security
No ratings yet
Local

Git

Free

by Modelcontextprotocol · Developer Tools

Read, search, and manipulate Git repositories programmatically

80.0K
Stars
6
Installs
6.5
Security
No ratings yet
Local

Toleno

Free

by Toleno · Developer Tools

Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.

137
Stars
530
Installs
8.0
Security
4.8
Local

mcp-creator-python

Free

by mcp-marketplace · Developer Tools

Create, build, and publish Python MCP servers to PyPI — conversationally.

-
Stars
77
Installs
10.0
Security
4.6
Local

MarkItDown

Free

by Microsoft · Content & Media

Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption

156.1K
Stars
40
Installs
6.0
Security
5.0
Local

FinAgent

Free

by mcp-marketplace · Finance

Free stock data and market news for any MCP-compatible AI assistant.

-
Stars
24
Installs
10.0
Security
No ratings yet
Local