everything vs reshapr
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | reshapr by reshaprio | |
|---|---|---|
| Stars | ★ 85,748 | ★ 92 |
| 30天用量 | — | — |
| 综合分 | 77 | 47 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | Java |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
reshapr · 概述
reShapr 是一个无代码 MCP 服务器,将 REST/GraphQL/gRPC API 转换为具有上下文控制能力的 AI 原生工具。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
reshapr · 使用场景
- 将现有 REST API 转换为 AI 代理的 MCP 工具
- 通过过滤 API 响应来控制上下文大小,再发送给 LLM
- 为 GraphQL 和 gRPC 服务创建 MCP 接口
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-everythingreshapr · 安装
安装 CLI:
npm install -g @reshapr/reshapr-cli本地运行平台:
reshapr run连接到控制面板并导入 API:
reshapr login -s http://localhost:5555 -u admin -p password
reshapr import -u https://raw.githubusercontent.com/open-meteo/open-meteo/refs/heads/main/openapi.yml --backendEndpoint https://api.open-meteo.com配置 Claude Desktop:
{
"mcpServers": {
"reshapr": {
"command": "npx",
"args": ["@reshapr/reshapr-cli", "serve"]
}
}
}