https://github.com/horw/esp-mcp
https://github.com/horw/esp-mcp
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/horw/esp-mcp
- Owner: horw
- Created: 2025-03-24T04:07:19.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-03-25T08:27:34.000Z (8 months ago)
- Last Synced: 2025-04-02T13:15:36.673Z (7 months ago)
- Language: Python
- Size: 10.3 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mcp-servers - esp-mcp - An MCP server for streamlining workflows and fixing build issues for ESP32 series chips using ESP-IDF. ([Read more](/details/esp-mcp.md)) `mcp` `esp32` `hardware` `build-automation` (Development Tools MCP Servers)
- awesome-mcp-servers - horw/esp-mcp - idf using MCP integration. (⚙️ Hardware & IoT)
- best-of-mcp-servers - GitHub - 88% open · ⏱️ 02.07.2025) (Embedded System)
- awesome-mcp-servers - **esp-mcp** - Centralize ESP32 related commands and simplify getting started with seamless, LLM-driven interaction and help. `http` `git` `github` `python` `esp-idf` `pip install git+https://github.com/horw/esp-mcp` (📦 Other)
- awesome-mcp-servers - **esp-mcp** - Centralize ESP32 related commands and simplify getting started with seamless, LLM-driven interaction and help. `http` `git` `github` `python` `esp-idf` `pip install git+https://github.com/horw/esp-mcp` (Other)
- awesome-mcp-servers - horw/esp-mcp - ESP-IDFを使用したESP32シリーズチップのビルド問題修正ワークフロー。 (サーバー実装 / 📟 <a name="embedded-system"></a>組み込みシステム)
- awesome-mcp-servers - ESP-MCP Build Manager - Manages and automates ESP-IDF project builds, including logging and automated issue resolution (Table of Contents / Developer Tools)
- awesome-mcp-servers - ESP-MCP Build Manager - Manages and automates ESP-IDF project builds, including logging and automated issue resolution (Table of Contents / Developer Tools)
- toolsdk-mcp-registry - ❌ esp-idf - IDF project building with automatic environment setup and error handling for ESP32 microcontroller development. (python) (Embedded System / How to Submit)
- toolsdk-mcp-registry - ❌ esp-idf - IDF project building with automatic environment setup and error handling for ESP32 microcontroller development. (python) (Embedded System)
README
Currently, this MCP supports simple project builds with logging, and automatic issue fixing based on logs for esp-idf build command.
### Notice
This is just a proof of concept of MCP. As I see it, much can be done to make it more useful with embedded devices, home assistants, or documentation. If you have any ideas, we can discuss them in the issues.
### Install
First, clone this MCP repository:
```bash
git clone git@github.com:horw/esp-mcp.git
```
Then, configure it in your chatbot.
```json
{
"mcpServers": {
"esp-run": {
"command": "/home/horw/.pyenv/shims/uv",
"args": [
"--directory",
"/home/horw/PycharmProjects/esp-mcp", <- your cloned path
"run",
"main.py"
],
"env": {
"IDF_PATH": "~/esp-idf" <- your ESP-IDF path
}
}
}
}
```
