MCP Catalogs
Home

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
Score3877
Official
Categories
CommunicationDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit7 mo agothis 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

  1. 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
  1. Via MCP:

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "faxbot": {
      "command": "node",
      "args": ["/path/to/faxbot-mcp"]
    }
  }
}
  1. 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
Comparison generated from public README + GitHub signals. Last updated automatically.