Back to MCP directory
publicPublicdnsLocal runtime

nature-remo-mcp-server

Nature Remo的MCP服务器,用于通过API与Nature Remo设备交互,提供设备管理和自动化操作功能。

article

README

🚀 Nature Remo MCP 服务器

Nature Remo 的 MCP 服务器可处理请求,并借助 Model Context Protocol SDK 与 Nature Remo API 进行交互。它提供了管理和自动化与 Nature Remo 设备交互的工具,让您更便捷地使用 Nature Remo 设备。

🚀 快速开始

Nature Remo 的 MCP 服务器,能有效处理请求,通过 Model Context Protocol SDK 与 Nature Remo API 进行交互。利用它提供的工具,可轻松管理和自动化与 Nature Remo 设备的交互。

✨ 主要特性

  • 借助 Model Context Protocol SDK 与 Nature Remo API 交互。
  • 提供多种工具,实现对 Nature Remo 设备交互的管理与自动化。

📦 安装指南

先决条件

需在 Nature Remo Home 创建自己的访问令牌。更多详细信息,请参阅 文档)。

设置

使用 VS Code

将以下配置添加到您的用户设置(JSON)文件中。通过按 Cmd + Shift + P 并选择 Preferences: Open User Settings (JSON) 打开设置。 或者,您可以在工作区创建一个 .vscode/mcp.json 文件,与其他用户共享配置。

⚠️ 重要提示

.vscode/mcp.json 文件中不需要 mcp 键。

{
  "mcp": {
    "servers": {
      "nature-remo": {
        "command": "npx",
        "args": [
          "-y",
          "noboru-i/nature-remo-mcp-server"
        ],
        "env": {
          "ACCESS_TOKEN": "<YOUR_TOKEN>"
        }
      }
    }
  }
}

使用 Claude Desktop

{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": [
        "-y",
        "noboru-i/nature-remo-mcp-server"
      ],
      "env": {
        "ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

📚 详细文档

此服务器提供以下工具:

  • list_devices - 列出家庭中的设备。
    • 无需参数
  • list_appliances - 列出家庭中的家电。
    • 无需参数
  • operate_tv - 操作 TV 家电。
    • applianceId:设备 ID(字符串,必填)
    • button:按钮标签(字符串,必填)
    • times:点击按钮的次数(整数,可选)
  • operate_aircon - 操作空调家电。
    • applianceId:设备 ID(字符串,必填)
    • airDirection:风向(字符串,可选)
    • airDirectionH:水平风向(字符串,可选)
    • airVolume:风量(字符串,可选)
    • button:按钮标签(字符串,可选)
    • operationMode:运行模式(字符串,可选)
    • temperature:温度(字符串,可选)
    • temperatureUnit:温度单位(字符串,可选)
    • times:点击按钮的次数(整数,可选)

📄 许可证

此项目根据 MIT 开源许可协议进行许可。完整的条款请参阅 MIT

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client