esp-mcp

Centralize ESP32 related commands and simplify getting started with seamless, LLM-driven interaction and help.

GitHub Stars

101

User Rating

Not Rated

Favorites

0

Views

21

Forks

10

Issues

32

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

Installation

Prerequisites

Python: 3.6 or higher
ESP-IDF: Required version installed

Installation Steps

1. Clone Repository

bash
git clone git@github.com:horw/esp-mcp.git
cd esp-mcp

2. Configure in Your Chatbot

Use the following JSON snippet to integrate the MCP server into your chatbot or agent system:
json
{
    "mcpServers": {
        "esp-run": {
            "command": "",
            "args": [
                "--directory",
                "",
                "run",
                "main.py"
            ],
            "env": {
                "IDF_PATH": ""
            }
        }
    }
}

3. Start the Server

Run the MCP server after completing the configuration.

Troubleshooting

Common Issues

Issue: Server won't start Solution: Check the Python version and ensure required dependencies are installed.

Additional Resources