dbhub vs esp32_nat_router
并排对比,帮你在这两个 MCP server 之间做选择。
dbhub by bytebase | esp32_nat_router by martin-ger | |
|---|---|---|
| Stars | ★ 2,769 | ★ 1,956 |
| 30天用量 | — | — |
| 综合分 | 57 | 54 |
| 官方 | — | — |
| 分类 | 数据库开发者工具运维基建 | 运维基建安全可观测性 |
| 实现语言 | TypeScript | C |
| 最近提交 | 1 个月前 | 本月 |
dbhub · 概述
零依赖 MCP 服务器,高效连接多种数据库并提供 SQL 工具。
esp32_nat_router · 概述
ESP32 NAT 路由器固件,带 MCP 桥接功能,支持 AI 控制网络特性。
dbhub · 使用场景
- 开发者进行数据库探索和模式检查
- 在 CI/CD 管道中执行带安全控制的 SQL 查询
- 通过统一界面管理多个数据库和操作
esp32_nat_router · 使用场景
- AI 控制的网络管理和监控
- 与 Home Assistant 集成,实现存在检测
- 为访客提供简单 IoT 网络分段
dbhub · 安装
安装
**Docker:**
docker run --rm --init \ --name dbhub \ --publish 8080:8080 \ bytebase/dbhub \ --transport http \ --port 8080 \ --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"**NPM:**
npx @bytebase/dbhub@latest --transport http --port 8080 --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"**演示模式:**
npx @bytebase/dbhub@latest --transport http --port 8080 --demoClaude Desktop 配置
将以下内容添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"dbhub": {
"command": "npx",
"args": ["@bytebase/dbhub@latest", "--transport", "stdio"]
}
}
}esp32_nat_router · 安装
安装步骤
- 将固件烧录到您的 ESP32,使用以下任一方法:
- Web 安装程序(最简单):访问 [https://martin-ger.github.io/esp32_nat_router/](https://martin-ger.github.io/esp32_nat_router/) - 使用 esptool 命令行:使用预编译的二进制文件
- 首次启动配置:
- 连接到 'ESP32_NAT_Router' WiFi 网络 - 在浏览器中打开 http://esp32-nat-router.local - 配置上行 WiFi 和 AP 设置 - 点击 '保存并重启'
Claude Desktop 配置
添加到 Claude Desktop 配置文件 config.json:
{
"mcpServers": {
"esp32-nat-router": {
"command": "npx",
"args": ["@martin-ger/esp32-nat-router-mcp"]
}
}
}