everything vs agentify
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | agentify by MonadWorks | |
|---|---|---|
| Stars | ★ 85,748 | ★ 25 |
| 30天用量 | — | — |
| 综合分 | 77 | 44 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 本月 | 2 个月前 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
agentify · 概述
将 OpenAPI 规范转换为 MCP 服务器和其他 AI 代理接口,只需一条命令。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
agentify · 使用场景
- 将现有的 REST API 文档转换为 MCP 服务器,供 AI 助手使用
- 从单个 OpenAPI 规范为多个 AI 开发平台生成文档文件
- 从 API 规范创建命令行交互的 CLI 工具
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-everythingagentify · 安装
通过 npm 安装:
npm install -g agentify-cli将 OpenAPI 规范转换为 MCP 服务器:
npx agentify-cli transform https://petstore.swagger.io/v2/swagger.json对于 Claude Desktop,将以下内容添加到您的 claude_desktop_config.json 文件中:
{
"mcpServers": {
"my-api": {
"command": "node",
"args": ["/path/to/generated/mcp-server.js"]
}
}
}