https://github.com/horw/esp-mcp
https://github.com/horw/esp-mcp
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/horw/esp-mcp
- Owner: horw
- Created: 2025-03-24T04:07:19.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-03-25T08:27:34.000Z (about 1 month ago)
- Last Synced: 2025-04-02T13:15:36.673Z (22 days 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 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)
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 [email protected]: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
}
}
}
}
```
