Hueify is an async-first Python library for Philips Hue. It lets you control lights, rooms, zones and scenes using the same names you see in the Hue app, with state kept fresh via serversent events. It also ships an MCP server for LLM tools.
pip install hueifyAll interaction goes through the Hueify async context manager. It connects to the bridge, populates the cache from the REST API, and subscribes to SSE events so state is always current without polling.
import asyncio
from hueify import Hueify
async def main() -> None:
async with Hueify() as hue:
# lights, rooms, zones are namespaces on the hue object
await hue.rooms.turn_on("Living Room")
asyncio.run(main())Credentials are read from the environment by default (HUE_BRIDGE_IP, HUE_APP_KEY). You can also pass them explicitly:
async with Hueify(bridge_ip="192.168.1.10", app_key="your-app-key") as hue:
...async with Hueify() as hue:
await hue.lights.turn_on("Desk lamp")
await hue.lights.turn_off("Desk lamp")
await hue.lights.set_brightness("Desk lamp", 75)
await hue.lights.increase_brightness("Desk lamp", 10)
await hue.lights.decrease_brightness("Desk lamp", 10)
await hue.lights.set_color_temperature("Desk lamp", 30)
brightness = hue.lights.get_brightness("Desk lamp")
print("Brightness:", brightness)async with Hueify() as hue:
print(hue.rooms.names) # list of all room names
await hue.rooms.turn_on("Living Room")
await hue.rooms.set_brightness("Living Room", 40)
await hue.rooms.increase_brightness("Living Room", 20)
await hue.rooms.set_color_temperature("Living Room", 35)
await hue.rooms.activate_scene("Living Room", "Relax")
active = hue.rooms.get_active_scene("Living Room")
print("Active scene:", active.name if active else None)
scenes = hue.rooms.scene_names("Living Room")
print("Available scenes:", scenes)Zones work identically to rooms:
async with Hueify() as hue:
print(hue.zones.names)
await hue.zones.turn_on("Downstairs")
await hue.zones.set_brightness("Downstairs", 60)
await hue.zones.activate_scene("Downstairs", "Focus")All not-found errors raise ResourceNotFoundException with the resource type, the lookup name, and a list of fuzzy-matched suggestions:
from hueify import Hueify, ResourceNotFoundException
async with Hueify() as hue:
try:
await hue.rooms.turn_on("Livng Room") # typo
except ResourceNotFoundException as e:
print(e)
# room 'Livng Room' not found. Did you mean: 'Living Room'?Hueify subscribes to the Hue bridge's serversent event stream inside __aenter__. State changes made outside your script (e.g. via the Hue app or a physical switch) are applied to the cache automatically no polling required.
Hueify includes a Model Context Protocol server that exposes lights, rooms, and zones to compatible LLM tools. Requires the mcp extra:
pip install hueify[mcp]The server uses the same Hueify context manager internally. Integration with a specific MCP host is not covered here.