MCP Catalogs
首页

esp-mcp vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

esp-mcp
by horw
everything
by modelcontextprotocol
Stars★ 148★ 85,748
30天用量
综合分4477
官方
分类
开发者工具AI / LLM 工具运维基建
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交5 个月前本月

esp-mcp · 概述

ESP32 开发 MCP 服务器,集中 ESP-IDF 命令并简化 LLM 驱动的交互。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

esp-mcp · 使用场景

  • LLM 辅助 ESP32 项目设置和配置
  • 自动化 ESP32 固件构建和烧录工作流
  • 简化的 ESP-IDF 依赖安装和管理

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

esp-mcp · 安装

git clone git@github.com/horw/esp-mcp.git

在您的 MCP 兼容聊天机器人中配置服务器:

{
  "mcpServers": {
    "esp-run": {
      "command": "<uv 或 python 可执行文件的路径>",
      "args": [
        "--directory",
        "<克隆的 esp-mcp 仓库路径>",
        "run",
        "main.py"
      ],
      "env": {
        "IDF_PATH": "<您的 esp-idf 目录路径>"
      }
    }
  }
}

everything · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。