MCP Catalogs
首页

pydantic-rpc vs everything

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

pydantic-rpc
by i2y
everything
by modelcontextprotocol
Stars★ 74★ 85,748
30天用量
综合分4577
官方
分类
开发者工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言PythonTypeScript
最近提交3 个月前本月

pydantic-rpc · 概述

PydanticRPC 快速将 Pydantic 模型暴露为 gRPC、ConnectRPC 和 MCP 服务,无需 protobuf 文件。

everything · 概述

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

pydantic-rpc · 使用场景

  • 构建通过 MCP 协议暴露工具的 AI 服务
  • 无需编写 protobuf 文件创建 gRPC 服务
  • 使用 Connect-RPC 开发基于 HTTP 的 RPC 服务

everything · 使用场景

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

pydantic-rpc · 安装

通过 pip 安装 PydanticRPC:

pip install pydantic-rpc

安装 CLI 支持:

pip install pydantic-rpc-cli

在 Claude Desktop 中使用,添加到 config.json:

{
  "mcpServers": {
    "pydantic-rpc": {
      "command": "python",
      "args": ["-m", "pydantic_rpc.server"],
      "env": {
        "PYDANTIC_RPC_PACKAGE_NAME": "my.services"
      }
    }
  }
}

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 公开数据自动生成,定期更新。