Faxbot vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Faxbot by DMontgomery40 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 7 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 7 mo ago | this month |
Faxbot · Summary
A self-hosted fax API with MCP support for AI assistant integration.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
Faxbot · Use cases
- Integrate fax capabilities into AI-powered customer service systems
- Automate document transmission from AI agents in healthcare
- Add fax functionality to productivity AI assistants
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
Faxbot · Install
Installation
- Using Docker Compose:
docker compose up -d --build api
docker compose --profile mcp up -d --build faxbot-mcp
docker compose --profile mcp up -d --build faxbot-mcp-sse- Via MCP:
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"faxbot": {
"command": "node",
"args": ["/path/to/faxbot-mcp"]
}
}
}- Via SDK:
- Python:
pip install faxbot - Node.js:
npm install faxbot
everything · 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