The Nature Remo MCP Server is a project designed to integrate the Nature Remo API with the Model Context Protocol (MCP). This server facilitates communication between the Nature Remo ecosystem and MCP-compatible applications, such as Claude Desktop.
To authenticate with the Nature Remo API, you need an access token. Obtain it by visiting Nature Remo Home.
To integrate the Nature Remo MCP Server with Claude Desktop, add the following configuration to your claude_desktop_config.json
:
{
"mcpServers": {
"github": {
"command": "npx",
"args": [
"-y",
"noboru-i/nature-remo-mcp-server"
],
"env": {
"ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
You can run the server using NPX with the following command:
npx -y noboru-i/nature-remo-mcp-server
package.json
file.