zencontrol-cloud-mcp

zencontrol-cloud-mcp

Enables AI assistants to discover and control ZenControl DALI-2 lighting systems through natural language via the ZenControl Cloud API.

Category
Visit Server

README

zencontrol-cloud-mcp

MCP server for ZenControl DALI-2 lighting control via the ZenControl Cloud API.

Python 3.11+ License: Apache 2.0

Overview

zencontrol-cloud-mcp enables AI assistants — such as Claude, Cursor, and other MCP-compatible clients — to discover and control ZenControl DALI-2 lighting systems through natural language.

Built on the Model Context Protocol (MCP) with FastMCP, the server supports two transports:

  • stdio — for local, single-user setups (Claude Desktop, Cursor, etc.)
  • StreamableHTTP — for hosted / multi-user deployments

Features

Tool Description
list_sites Discover accessible ZenControl sites
get_site_details Explore site hierarchy (floors, zones, gateways, tenancies)
list_groups List lighting groups by scope (site, floor, map, or gateway)
list_devices List devices and their ECGs by scope
control_light On/off, dim, set level (0–100 %), recall scenes, identify
set_colour Colour temperature (Kelvin) or RGBWAF control

Prerequisites

Quick Start

  1. Set your credentials:

    export ZENCONTROL_CLIENT_ID=your_client_id
    export ZENCONTROL_CLIENT_SECRET=your_client_secret
    
  2. Run with uvx:

    uvx zencontrol-cloud-mcp
    

    On first launch a browser window will open so you can log in to ZenControl. After that, tokens are cached and refreshed automatically.

Configuration

Claude Desktop (stdio mode)

Add the following to your Claude Desktop configuration file:

{
  "mcpServers": {
    "zencontrol": {
      "command": "uvx",
      "args": ["zencontrol-cloud-mcp"],
      "env": {
        "ZENCONTROL_CLIENT_ID": "your_client_id",
        "ZENCONTROL_CLIENT_SECRET": "your_client_secret"
      }
    }
  }
}

HTTP mode (hosted)

Start the server on a network port:

uvx zencontrol-cloud-mcp --transport streamable-http --port 9000

Then point your MCP client at the HTTP endpoint:

{
  "mcpServers": {
    "zencontrol": {
      "url": "http://localhost:9000/mcp"
    }
  }
}

Environment Variables

Variable Required Default Description
ZENCONTROL_CLIENT_ID Yes (stdio) OAuth client ID
ZENCONTROL_CLIENT_SECRET Yes (stdio) OAuth client secret
ZENCONTROL_REDIRECT_URI No http://localhost:9000/callback OAuth redirect URI
ZENCONTROL_PORT No 9000 HTTP server port
ZENCONTROL_PUBLIC_URL No Public HTTPS URL for HTTP mode (e.g. https://mcp.example.com)
ZENCONTROL_SCOPE_SITE No Lock operations to a site (UUID, tag, or name)

Authentication

The server uses OAuth 2.0 Authorization Code flow to authenticate with the ZenControl Cloud API.

  1. On first run the server opens your default browser so you can log in.
  2. Tokens are stored encrypted in a platform-appropriate location (via platformdirs).
  3. Tokens are refreshed automatically when they expire — you should rarely need to re-authenticate.

Usage Examples

Typical interactions with an AI assistant:

User: "What sites do I have access to?"
→ Calls list_sites

User: "Show me the structure of the Main Office site"
→ Calls get_site_details

User: "Turn on all lights in the Lobby group"
→ Calls control_light(target_type="group", target_id="...", action="on")

User: "Set the office lights to 50% brightness"
→ Calls control_light(target_type="group", target_id="...", action="set_level", level=50)

User: "Change the lobby to warm white (3000K)"
→ Calls set_colour(target_type="group", target_id="...", mode="temperature", kelvin=3000)

Core Tool Families

  • Site discovery: list_sites, get_site_details
  • Topology inventory: list_groups, list_devices, list_gateways, list_device_locations
  • Lighting control: control_light, set_colour, set_profile
  • Live telemetry: get_live_light_levels, get_sensor_readings, get_system_variables
  • Diagnostics: get_device_health
  • Scope controls: set_scope, get_scope, clear_scope

Safe Control Workflow

  1. Start with list_sites.
  2. Resolve a concrete target with get_site_details or list_groups.
  3. Prefer controlling groups over individual devices.
  4. Use moderate levels first (for example, 30-50%) before full output.
  5. Use scope controls to avoid cross-site mistakes in multi-site environments.

Troubleshooting

  • Required environment variable(s) not set:
    • Set ZENCONTROL_CLIENT_ID and ZENCONTROL_CLIENT_SECRET for stdio mode.
  • HTTP 401 on live endpoints:
    • Verify account entitlement for Live API and valid token scope.
  • HTTP 403 on diagnostics:
    • Account may not have access to diagnostics endpoints.
  • get_site_details parsing inconsistencies:
    • This server tolerates both label payload shapes ({"value": "..."} and plain strings).

Architecture

┌─────────────────────┐     stdio / StreamableHTTP     ┌─────────────────────┐
│     MCP Client      │ ──────────────────────────────▶ │ zencontrol-cloud-mcp│
│ (Claude, Cursor, …) │                                │   FastMCP Server    │
└─────────────────────┘                                └──────────┬──────────┘
                                                                  │
                                                    REST + Live API│
                                                                  ▼
                                                       ┌──────────────────┐
                            ┌──────────────────┐       │    ZenControl    │
                            │    Encrypted     │◀─────▶│    Cloud API     │
                            │   Token Store    │       └──────────────────┘
                            └──────────────────┘

Development

git clone https://github.com/oWretch/zencontrol-cloud-mcp.git
cd zencontrol-cloud-mcp
uv sync

# Lint & format
uv run ruff check src/
uv run ruff format --check src/

# Run tests
uv run pytest

# Generate full API docs (Markdown)
uv run python scripts/generate_docs.py

Generated documentation entry points:

  • docs/reference/api.md

See CONTRIBUTING.md for full guidelines.

API Payload Compatibility Notes

Some ZenControl payloads can represent labels in two shapes:

  • Wrapped sync field: { "value": "Office", "state": "OK", "error": null }
  • Plain string: "Office"

The server accepts both formats for label fields (for example, tenancy and floor labels) so tools such as get_site_details remain robust across mixed API responses.

License

This project is licensed under the Apache License 2.0.

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