locqueliu/esp32-agent-control-demo
Public-safe ESP32 AI agent control demo with MCP-style bridge design
Platform-specific configuration:
{
"mcpServers": {
"esp32-agent-control-demo": {
"command": "npx",
"args": [
"-y",
"esp32-agent-control-demo"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
This repository is a compact control stack for AI-agent-driven ESP32 interaction.
I use it to think through the practical boundary between model-facing tools and device-facing commands: how an agent should call functions, how a bridge should normalize them, and how an ESP32 runtime should route them into screen, LED, servo, or motion behavior.
An MCP-based chatbotMITThe upstream project is an important reference because it already exposes device-side MCP control concepts. This repository keeps my smaller, easier-to-read version of that control path in the form of schemas, examples, and a runnable translator.
tools/call payloads into compact device commandsLoading reviews...