agentanycast vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
agentanycast by AgentAnycast | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 76 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 46 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具开发者工具沟通协作 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Shell | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
agentanycast · 概述
一个无需公网IP即可让AI代理跨网络通信的对等运行时,包含MCP服务器。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
agentanycast · 使用场景
- 在不暴露公网的情况下连接企业网络中的AI代理
- 构建可在离线或受限网络上工作的去中心化代理网络
- 通过MCP服务器将P2P AI功能集成到现有AI工具中
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
agentanycast · 安装
安装MCP服务器:
uvx agentanycast-mcp对于Claude Desktop,添加到配置文件中:
{
"mcpServers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}对于Python代理:
pip install agentanycast对于TypeScript代理:
npm install agentanycasteverything · 安装
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