what is nature-remo-mcp-server?
Nature-remo-mcp-server is a server application designed to work with Nature Remo, a smart home device that allows users to control their home appliances remotely.
how to use nature-remo-mcp-server?
To use nature-remo-mcp-server, clone the repository from GitHub, set up the server environment, and configure it to connect with your Nature Remo device.
key features of nature-remo-mcp-server?
- Remote control of home appliances via Nature Remo
- Integration with various smart home systems
- Open-source and customizable server application
use cases of nature-remo-mcp-server?
- Automating home appliance control based on user preferences.
- Integrating with other smart home devices for enhanced functionality.
- Developing custom applications that leverage Nature Remo's capabilities.
FAQ from nature-remo-mcp-server?
- Is nature-remo-mcp-server free to use?
Yes! nature-remo-mcp-server is open-source and free to use.
- What programming language is used in nature-remo-mcp-server?
The project is primarily developed in JavaScript.
- Can I contribute to nature-remo-mcp-server?
Yes! Contributions are welcome, and you can submit pull requests on GitHub.
Nature Remo MCP server
MCP Server for the Nature Remo API.
Overview
This is an MCP server for Nature Remo, designed to handle requests and interact with the Nature Remo API using the Model Context Protocol SDK. It provides tools to manage and automate interactions with Nature Remo devices.
Prerequisites
- Create your own access_token on Nature Remo Home. more detail, see documentation).
Setup
Usage with VS Code
Add the following configuration to your User Settings (JSON) file. Open the settings by pressing Cmd + Shift + P
and selecting Preferences: Open User Settings (JSON)
.
Alternatively, you can create a .vscode/mcp.json
file in your workspace to share the configuration with others. Note that the mcp
key is not needed in the .vscode/mcp.json
file.
Note that the
mcp
key is not needed in the.vscode/mcp.json
file.
{
"mcp": {
"servers": {
"nature-remo": {
"command": "npx",
"args": [
"-y",
"noboru-i/nature-remo-mcp-server"
],
"env": {
"ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
}
Usage with Claude Desktop
{
"mcpServers": {
"github": {
"command": "npx",
"args": [
"-y",
"noboru-i/nature-remo-mcp-server"
],
"env": {
"ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
Tools
This server provides the following tools:
-
list_devices - List devices on the home.
- No parameters required
-
list_appliances - List appliances on the home.
- No parameters required
-
operate_tv - Operate a TV appliance.
applianceId
: Appliance id (string, required)button
: Button label (string, required)times
: Number of times to press the button (integer, optional)
-
operate_aircon - Operate an aircon appliance.
applianceId
: Appliance id (string, required)airDirection
: Air direction (string, optional)airDirectionH
: Horizontal air direction (string, optional)airVolume
: Air volume (string, optional)button
: Button label (string, optional)operationMode
: Operation mode (string, optional)temperature
: Temperature (string, optional)temperatureUnit
: Temperature unit (string, optional)times
: Number of times to press the button (integer, optional)
License
This project is licensed under the terms of the MIT open source license. Please refer to MIT for the full terms.