AgentHubAgentHub

mcp-philips-hue

MCP ServerMCP Registry官方收录

io.github.m2ai-mcp-servers/mcp-philips-hue · v1.0.0

MCP server for Philips Hue smart lighting control

概览

mcp-philips-hue 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "mcp-philips-hue": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-philips-hue"
      ],
      "env": {
        "HUE_BRIDGE_IP": "<HUE_BRIDGE_IP>",
        "HUE_API_KEY": "<HUE_API_KEY>"
      }
    }
  }
}

环境变量

HUE_BRIDGE_IP必填

IP address of your Philips Hue Bridge

HUE_API_KEY必填secret

Your Hue Bridge API key

相关资源

统一 Manifest

{
  "id": "io.github.m2ai-mcp-servers/mcp-philips-hue",
  "type": "mcp-server",
  "version": "1.0.0",
  "displayName": "mcp-philips-hue",
  "description": "MCP server for Philips Hue smart lighting control",
  "repository": {
    "url": "https://github.com/m2ai-mcp-servers/mcp-philips-hue",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "mcp-philips-hue",
        "version": "1.0.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "HUE_BRIDGE_IP",
            "description": "IP address of your Philips Hue Bridge",
            "isRequired": true
          },
          {
            "name": "HUE_API_KEY",
            "description": "Your Hue Bridge API key",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.m2ai-mcp-servers/mcp-philips-hue",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.m2ai-mcp-servers%2Fmcp-philips-hue/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
mcp-philips-hue — MCP Server 安装与配置 · AgentHub