atxp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
atxp by atxp-dev | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 29 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | AI / LLM 工具沟通协作开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 3 个月前 | 本月 |
atxp · 概述
ATXP 为 AI 代理提供支付基础设施和 MCP 工具,包括邮箱、短信、媒体生成和代码执行功能。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
atxp · 使用场景
- 需要进行网络研究和内容生成而无需管理 API 密钥的 AI 代理
- 构建能够发送电子邮件、短信和进行语音通话的自主代理
- 开发需要按使用付费方式访问付费工具的 AI 系统
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
atxp · 安装
Gemini CLI
gemini extensions install https://github.com/atxp-dev/atxpClaude Desktop / Cursor / Windsurf
添加到您的 MCP 客户端配置(例如 claude_desktop_config.json)中:
{
"mcpServers": {
"atxp": {
"command": "npx",
"args": ["-y", "atxp@latest"]
}
}
}任何 MCP 客户端
npx atxp@latesteverything · 安装
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