Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Loxone Server

FreeNot checked

Enables natural language control of Loxone smart home systems, including lighting, audio, climate, and environmental monitoring, through MCP-compatible clients.

GitHubEmbed

About

Enables natural language control of Loxone smart home systems, including lighting, audio, climate, and environmental monitoring, through MCP-compatible clients.

README

A Model Context Protocol (MCP) server for Loxone home automation integration.

Real-Life Usage Example

See how this MCP server integrates with Claude Desktop for smart home control: Claude Desktop Demo

Temporarily disabled ventilation and asked to analyze air quality impact and generate comprehensive indoor climate reports.

  • Lighting Control: Adjust lights throughout your home with natural language commands
  • Audio Management: Control multi-room audio systems and zones
  • Climate Control: Manage ventilation, heating, and cooling systems
  • Environmental Monitoring: Generate reports on indoor climate conditions (temperature, humidity, CO2 levels)

Quick usage guide

Using npm package

To use npm package, minimum nodejs 20 is required.

First install the package globally:

npm install -g @reijosirila/loxone-mcp-server

Add to your Claude claude_desktop_config.json or any other MCP client config:

{
  "mcpServers": {
    "loxone": {
      "command": "loxone-mcp-server",
      "env": {
        "LOXONE_HOST": "192.168.1.100",
        "LOXONE_USERNAME": "your-username",
        "LOXONE_PASSWORD": "your-password"
      }
    }
  }
}

Using Docker Hub image

First pull the image:

docker pull reijosirila/loxone-mcp-server

Then add to your Claude claude_desktop_config.json or any other MCP client config:

{
  "mcpServers": {
    "loxone": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-e", "LOXONE_HOST",
        "-e", "LOXONE_USERNAME",
        "-e", "LOXONE_PASSWORD",
        "reijosirila/loxone-mcp-server"
      ],
      "env": {
        "LOXONE_HOST": "192.168.1.100",
        "LOXONE_USERNAME": "your-username",
        "LOXONE_PASSWORD": "your-password"
      }
    }
  }
}

Loxone Statistics Support

The MCP server supports Loxone Statistics, which aggregates historical data into smaller portions optimized for AI analysis. This allows for efficient analysis of trends and patterns in your smart home data.

  • Statistics V1: ✅ Fully supported and tested
  • Statistics V2: ⚠️ Supported but not yet tested

Loxone Control Implementation Status

Control Implemented Support Level Tested
Implemented Controls
Alarm Full
AudioZone Full
AudioZoneV2 Full
Central Objects (Alarm) Full
Central Objects (AudioZone) Full
Central Objects (Gate) Full
Central Objects (Jalousie) Full
Central Objects (Window) Full
ColorPicker Full
ColorPickerV2 Full
Dimmer Full
EIBDimmer Full
Gate Full
InfoOnlyAnalog Full
InfoOnlyDigital Full
Intelligent Room Controller ⚠️ Partial
Intelligent Room Controller v2 ⚠️ Partial
Jalousie Full
LightController Full
LightControllerV2 Full
Meter Full
Pushbutton Full
Radio Full
Slider Full
Switch Full
TextState Full
EnergyFlowMonitor Full
EnergyManager2 Full
IntercomV2 Full
Sauna Full
Not Implemented Controls
AalEmergency -
AalSmartAlarm -
ACControl -
AlarmChain -
AlarmClock -
Application -
CarCharger -
ClimateController -
ClimateControllerUS -
Daytimer -
EnergyManager -
Fronius -
Heatmixer -
Hourcounter -
InfoOnlyText -
Intercom -
Irrigation -
LightsceneRGB -
LoadManager -
MailBox -
MsShortcut -
NFC Code Touch -
PoolController -
PowerUnit -
PresenceDetector -
PulseAt -
Remote -
Sequential -
SmokeAlarm -
SolarPumpController -
SpotPriceOptimizer -
StatusMonitor -
SteakThermo -
SystemScheme -
TextInput -
TimedSwitch -
Tracker -
UpDownLeftRight (analog) -
UpDownLeftRight (digital) -
ValueSelector -
Ventilation -
Wallbox2 -
WallboxManager -
Webpage -
Window -
WindowMonitor -

Adding New Controls

Implementing new controls is straightforward using the AbstractControlType base class. Each control type follows a consistent pattern, making it easy to add support for additional Loxone controls.

📚 Loxone Official Documentation: Loxone Structure File Documentation

Contributions are welcome! If you need a control that's not yet implemented, feel free to submit a pull request.

Miniserver Version Support

  • Miniserver v1: ✅ Fully supported (local and remote connections)
  • Miniserver v2: ⚠️ Local connection only
    • v2 should work but is not tested
    • Remote connection to v2 is not currently supported due to SSL encryption requirements
    • The underlying client library (loxone-ts-api) doesn't have SSL support implemented yet

🙏 Special thanks to the loxone-ts-api library for providing the foundation for Loxone communication!

Supported MCP Transports

  • Stdio: ✅ Fully supported
  • HTTP: ✅ Fully supported (Express server with /mcp endpoint)

The transport can be configured using the MCP_TRANSPORT environment variable:

  • stdio (default): Standard input/output transport
  • http: HTTP server with Streamable HTTP support at /mcp endpoint

Connection Options

  • Connect directly to your Miniserver using its local IP address.

  • Connect to your Miniserver remotely using Loxone's cloud discovery service:

    • Automatically discovers your Miniserver's external URL and port using its serial number. This is done using HEAD request to: https://dns.loxonecloud.com/<sn>
    • Loxone External Access must be enabled.

Local Docker Setup

Building the Docker Image

git clone [email protected]:reijosirila/loxone-mcp-server.git
cd loxone-mcp-server
docker build -t loxone-mcp-server .

Environment Variables

You can also create a .env file with your Loxone credentials and configuration:

# Loxone connection settings
LOXONE_HOST=192.168.1.100
LOXONE_USERNAME=admin
LOXONE_PASSWORD=your-password

# Or connect over the internet using Loxone DNS
# This will auto-discover Loxone external URL and port
# LOXONE_SERIAL_NUMBER=

# MCP Transport configuration
# Options: stdio (default), http
MCP_TRANSPORT=stdio

# HTTP server port (only used when MCP_TRANSPORT=http)
# Default: 3000
PORT=3000

# Log level (0=ERROR, 1=WARN, 2=INFO, 3=DEBUG)
# Default: 1 for stdio, 2 for http
LOG_LEVEL=2

Alternative: Running without Docker

If you prefer to run without Docker, you can use Node.js directly:

{
  "mcpServers": {
    "loxone": {
      "command": "node",
      "args": ["dist/server.js"],
      "cwd": "/path/to/loxone-mcp-server",
      "env": {
        "LOXONE_HOST": "your-loxone-ip",
        "LOXONE_USERNAME": "your-username",
        "LOXONE_PASSWORD": "your-password"
      }
    }
  }
}

Development

Prerequisites

  • Node.js 22+
  • npm
  • TypeScript

Installation

# Installation
npm install

# Build
npm run build

# Run with stdio transport (default)
npm start

# Run with HTTP transport
MCP_TRANSPORT=http npm start
# or
npm run start:http

# Development mode
npm run dev          # stdio transport
npm run dev:http     # Streamable HTTP transport

Streamable HTTP Transport Usage

When using Streamable HTTP transport, the server listens on port 3000 by default (configurable via PORT or MCP_PORT environment variable):

  • MCP Endpoint: http://localhost:3000/mcp
  • Health Check: http://localhost:3000/health (no authentication required)

API Key Authentication

The Streamable HTTP server supports optional API key authentication via the MCP_API_KEY environment variable:

# Set API key for secure access
MCP_API_KEY=your-secure-api-key-here MCP_TRANSPORT=http npm start

When configured, the API key can be provided in two ways:

  1. Bearer Token: Authorization: Bearer your-secure-api-key-here
  2. X-API-Key Header: X-API-Key: your-secure-api-key-here

If MCP_API_KEY is not set, the server will be publicly accessible (useful for development or when behind a reverse proxy).

Internet Access Security

⚠️ Important: If you're exposing the HTTP server over the internet, always use SSL offload with a reverse proxy (e.g., nginx) to secure the connection.

Example Claude Desktop/Gemini configuration for HTTP transport:

{
  "mcpServers": {
    "loxone-http": {
      "httpUrl": "http://localhost:3000/mcp",
      "description": "Loxone Smart Home MCP Server (HTTP)"
    }
  }
}

Example with API key authentication (when connecting to a remote server):

{
  "mcpServers": {
    "loxone-http-secure": {
      "httpUrl": "https://your-server.com/mcp",
      "headers": {
        "Authorization": "Bearer your-secure-api-key-here"
      },
      "description": "Loxone Smart Home MCP Server (Secure HTTP)"
    }
  }
}

Or using X-API-Key header:

{
  "mcpServers": {
    "loxone-http-secure": {
      "httpUrl": "https://your-server.com/mcp",
      "headers": {
        "X-API-Key": "your-secure-api-key-here"
      },
      "description": "Loxone Smart Home MCP Server (Secure HTTP)"
    }
  }
}

License

This software is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0).

Important License Terms

  • Free to use for personal and commercial purposes
  • Modifications allowed and encouraged
  • ⚠️ Source code must be shared when:
    • You distribute the software
    • You use it as a network service (SaaS)
    • You modify and deploy it commercially

For the full license text, see the LICENSE file.

Contributing

Contributions are welcome! By contributing to this project, you agree to license your contributions under the AGPL-3.0 license.

Support

For issues, feature requests, or questions, please open an issue on GitHub.

from github.com/reijosirila/loxone-mcp-server

Install Loxone Server in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install loxone-mcp-server

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add loxone-mcp-server -- npx -y @reijosirila/loxone-mcp-server

FAQ

Is Loxone Server MCP free?

Yes, Loxone Server MCP is free — one-click install via Unyly at no cost.

Does Loxone Server need an API key?

No, Loxone Server runs without API keys or environment variables.

Is Loxone Server hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Loxone Server in Claude Desktop, Claude Code or Cursor?

Open Loxone Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Loxone Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All media MCPs