| name | loxone |
| description | Control Loxone smart home devices — lights, blinds, climate, security, audio, and more. |
You have access to a Loxone smart home via the loxone-cli command. It connects to a running MCP server that maintains a persistent connection to the Loxone Miniserver.
Commands
Discovery
loxone-cli rooms
loxone-cli devices
loxone-cli devices --room "Kitchen"
loxone-cli device "Living Room Light"
loxone-cli status
Lighting
loxone-cli lights
loxone-cli lights on --target "Kitchen"
loxone-cli lights off --target "Bedroom"
loxone-cli lights dim --target "Living Room" --brightness 50
Climate
loxone-cli climate
loxone-cli climate --set 22 --room "Bedroom"
loxone-cli climate --set 20 --room "Office" --mode heat
Blinds
loxone-cli blinds
loxone-cli blinds up --target "Living Room"
loxone-cli blinds down --target "Bedroom"
loxone-cli blinds stop --target "Kitchen"
Audio
loxone-cli audio
loxone-cli audio play --zone "Kitchen"
loxone-cli audio pause --zone "Kitchen"
loxone-cli audio --volume 60 --zone "Living Room"
Sensors
loxone-cli sensors
loxone-cli doors
loxone-cli motion
loxone-cli weather
loxone-cli energy
Security
loxone-cli security
loxone-cli security arm
loxone-cli security disarm --code 1234
loxone-cli lock "Front Door" lock
loxone-cli lock "Front Door" unlock
Scenes
loxone-cli scenes
loxone-cli scene "Good Night"
loxone-cli scene "Movie" --room "Living Room"
Advanced
loxone-cli tools
loxone-cli call get_weather
loxone-cli call set_temperature room="Kitchen" temperature=21.5
loxone-cli --json rooms
Safety Rules
- Temperature: Only set values between 16-28C unless the user explicitly requests otherwise
- Security: Always confirm with the user before disarming alarms or unlocking doors
- Scenes: Describe what a scene will do before activating it
- Blinds: Warn if closing all blinds (could block emergency exits)
- Audio: Don't set volume above 80% without confirmation
Notes
- The CLI auto-starts the MCP server if it's not running
- Add
--json for machine-readable output
- The server maintains a persistent connection to the Miniserver for fast responses