esp32_nat_router vs mcphub
Side-by-side comparison to help you pick between these two MCP servers.
esp32_nat_router by martin-ger | mcphub by samanhappy | |
|---|---|---|
| Stars | ★ 1,956 | ★ 2,082 |
| 30d uses | — | — |
| Score | 54 | 57 |
| Official | — | — |
| Categories | Ops & InfraSecurityMonitoring | Developer ToolsOps & InfraAI / LLM Tools |
| Language | C | TypeScript |
| Last commit | this month | this month |
esp32_nat_router · Summary
ESP32 NAT Router firmware with MCP Bridge for AI-controlled networking features.
mcphub · Summary
MCPHub is a unified management platform for orchestrating multiple MCP servers with flexible routing and centralized dashboard.
esp32_nat_router · Use cases
- AI-controlled network management and monitoring
- Home Assistant integration with presence detection
- Simple IoT network segmentation with guest access
mcphub · Use cases
- Organizing and managing multiple MCP servers in a distributed team environment
- Creating custom routing strategies for different AI client connections
- Implementing secure access controls for MCP resources in production
esp32_nat_router · Install
Installation
- Flash the firmware to your ESP32 using one of these methods:
- Web Installer (easiest): Visit [https://martin-ger.github.io/esp32_nat_router/](https://martin-ger.github.io/esp32_nat_router/) - Command Line with esptool: Use the pre-built binaries
- First boot configuration:
- Connect to the 'ESP32_NAT_Router' WiFi network - Open http://esp32-nat-router.local in your browser - Configure upstream WiFi and AP settings - Click 'Save & Reboot'
Claude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"esp32-nat-router": {
"command": "npx",
"args": ["@martin-ger/esp32-nat-router-mcp"]
}
}
}mcphub · Install
Docker Installation (Recommended)
# Run with custom config (recommended)
docker run -p 3000:3000 -v ./mcp_settings.json:/app/mcp_settings.json -v ./data:/app/data samanhappy/mcphub
# Or run with default settings
docker run -p 3000:3000 samanhappy/mcphubClaude Desktop Configuration
Add to Claude Desktop's config.json:
{
"mcpServers": {
"mcphub": {
"command": "http",
"args": ["http://localhost:3000/mcp"]
}
}
}Local Development
git clone https://github.com/samanhappy/mcphub.git
cd mcphub
pnpm install
pnpm dev