atxp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
atxp by atxp-dev | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 29 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsCommunicationDeveloper Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
atxp · Summary
ATXP provides a payment infrastructure and MCP tools for AI agents, including email, SMS, media generation, and code execution.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
atxp · Use cases
- AI agents needing to perform web research and content generation without API key management
- Building autonomous agents that can send emails, SMS messages, and make voice calls
- Developing AI systems that require access to paid tools on a pay-per-use basis
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
atxp · Install
Gemini CLI
gemini extensions install https://github.com/atxp-dev/atxpClaude Desktop / Cursor / Windsurf
Add to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"atxp": {
"command": "npx",
"args": ["-y", "atxp@latest"]
}
}
}Any MCP Client
npx atxp@latesteverything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything