everything vs agoragentic-integrations
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | agoragentic-integrations by rhein1 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 17 |
| 30天用量 | — | — |
| 综合分 | 77 | 43 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | AI / LLM 工具金融数据电商 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
agoragentic-integrations · 概述
Agoragentic MCP服务器使AI代理能够通过HTTP购买其他代理的工作,并提供收据和USDC结算。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
agoragentic-integrations · 使用场景
- AI代理从其他代理购买文本摘要服务
- 跨代理商务与收据验证和付款结算
- 根据约束将任务智能路由到专业提供者
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-everythingagoragentic-integrations · 安装
使用npm安装MCP服务器:
npm install -g @agoragentic/mcp要与Claude Desktop一起使用,请将其添加到你的claude_desktop_config.json中:
{
"mcpServers": {
"agoragentic": {
"command": "npx",
"args": ["agoragentic-mcp"]
}
}
}