A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/espressif/esp-rainmaker-mcp below:

espressif/esp-rainmaker-mcp: ESP RainMaker MCP server

This project provides a Model Context Protocol (MCP) server wrapper around the esp-rainmaker-cli Python library. It allows MCP-compatible clients (like LLMs or applications such as Cursor, Claude Desktop, and Windsurf) to interact with your ESP RainMaker devices using the official CLI.

Introduction to Model Context Protocol (MCP)

The Model Context Protocol (MCP) is a standardized framework that enables AI systems to interact with external tools, data sources, and services in a unified manner. Introduced by Anthropic and adopted by major AI organizations, MCP acts as a universal interface, much like USB-C for hardware, allowing seamless integration across different platforms.

Key Benefits of MCP in ESP RainMaker

By integrating MCP, the ESP RainMaker platform enhances its capabilities, allowing tools like Claude, Cursor, Windsurf, and Gemini CLI to manage IoT devices efficiently and securely.

  1. Clone the Repository:

    git clone https://github.com/espressif/esp-rainmaker-mcp.git
    cd esp-rainmaker-mcp
  2. Install Dependencies using uv: This command installs esp-rainmaker-cli, mcp[cli], and any other dependencies listed in pyproject.toml into a virtual environment managed by uv.

    (This assumes uv is installed)

  3. Login to ESP Rainmaker using esp-rainmaker-cli

    uv run esp-rainmaker-cli login

Note

Direct login via username/password within MCP is not supported for security reasons. Please use the standard CLI login flow first.

To add this project as an MCP server in supported MCP clients (Cursor, Claude Desktop, Windsurf, and Gemini CLI), you'll need to add the same JSON configuration to each client's config file. The configuration is identical across all clients:

MCP Server Configuration (All Clients)

Use the following JSON configuration for all MCP clients:

{
   "mcpServers": {
      "ESP-RainMaker-MCP": {
         "command": "uv",
         "args": [
            "run",
            "--with",
            "esp-rainmaker-cli",
            "--with",
            "mcp[cli]",
            "mcp",
            "run",
            "<absolute_path_to_repo>/server.py"
         ]
      }
   }
}

Important

Replace <absolute_path_to_repo>/server.py with the actual absolute path to the server.py file within the cloned esp-rainmaker-mcp directory on your system.

  1. Open Cursor and click on the settings (gear icon) at the top right.

  2. Navigate to "Tools & Integrations" from the settings menu.

  3. Click on "MCP Tools" in the integrations section.

  4. Click on "New MCP Server" to add a new server.

  5. This will open the mcp.json file. Add the JSON configuration shown above.

Claude Desktop MCP Server Setup
  1. Open Claude Desktop and go to Settings -> Developer -> Edit Config.

  2. This will open the configuration file (claude_desktop_config.json). Add the JSON configuration shown above.

  3. Save the changes and restart Claude Desktop to apply the new settings.

Windsurf MCP Server Setup
  1. Open Windsurf and look for the hammer-type icon under the chat text input area.

  2. Click on the hammer icon and select "Configure" from the options. This will open the plugins window.

  3. Click on "View raw config" which will show you the ~/.codium/windsurf/mcp_config.json file.

  4. Add the JSON configuration shown above to the file.

  5. Save the changes and click on "Refresh" under the chat text window to load the ESP RainMaker MCP tools.

Gemini CLI MCP Server Setup
  1. Locate your Gemini CLI settings file. On macOS, this is typically at ~/.gemini/settings.json.
  2. Open the settings.json file in your preferred text editor.
  3. Add the JSON configuration shown above to the mcpServers section of the file. If the section does not exist, create it as shown in the example.
  4. Save the file and restart Gemini CLI if it is running.

Note

The configuration for all four applications (Cursor, Claude Desktop, Windsurf, and Gemini CLI) is the same, so you can use the same JSON structure for all of them.

Note

The --with arguments ensure uv includes the necessary dependencies when running the mcp run command.

This server acts as a bridge. It uses the mcp library to handle the Model Context Protocol communication. When a tool is called:

  1. It uses functions from the installed esp-rainmaker-cli library.
  2. The library functions read locally stored authentication tokens.
  3. It makes the necessary API calls to the ESP RainMaker cloud.
  4. It returns the results (or errors) back through the MCP protocol.

This MCP server exposes the following tools for interacting with ESP RainMaker:

Authentication & Configuration Group Management (Home/Room Hierarchy)

This project is licensed under the terms specified in the LICENSE file.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4