We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pedrof/hue-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•524 B
# Dockerfile for Philips Hue MCP Server
FROM python:3.11-slim
# Set working directory
WORKDIR /app
# Install uv for fast dependency installation
RUN pip install --no-cache-dir uv
# Copy project files
COPY pyproject.toml .
COPY src/ src/
# Install dependencies
RUN uv pip install --system -e .
# Set environment variables (will be overridden by docker-compose or runtime)
ENV HUE_BRIDGE_IP=""
ENV HUE_API_KEY=""
# Run the MCP server (network mode by default)
CMD ["python", "-m", "hue_mcp_server.fastmcp_http_server"]