everything vs mcp-openapi
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | mcp-openapi by ReAPI-com | |
|---|---|---|
| Stars | ★ 85,748 | ★ 86 |
| 30天用量 | — | — |
| 综合分 | 77 | 41 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 14 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
mcp-openapi · 概述
一个加载 OpenAPI 规范并通过 MCP 协议使 LLM 能够在 IDE 中理解和使用 API 的 MCP 服务器。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
mcp-openapi · 使用场景
- 在 IDE 中生成具有 API 感知的代码片段和客户端
- 为 API 端点提供上下文感知的代码补全
- 从 OpenAPI 规范自动生成 API 文档
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-everythingmcp-openapi · 安装
使用 npm 安装 MCP 服务器:
npm install -g @reapi/mcp-openapi在 Cursor IDE 中通过创建 .cursor/mcp.json 进行配置:
{
"mcpServers": {
"@reapi/mcp-openapi": {
"command": "npx",
"args": ["-y", "@reapi/mcp-openapi@latest", "--dir", "./specs"],
"env": {}
}
}
}将您的 OpenAPI 规范放在 ./specs 目录中,并在 Cursor 设置 > MCP 中启用服务器。