MCP Catalogs
Home

everything vs token-enhancer

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
token-enhancer
by xelektron
Stars★ 85,748★ 64
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
Web ScrapingAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last committhis month1 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

token-enhancer · Summary

MCP server that strips web pages to clean text, reducing token usage by 86-99%.

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

token-enhancer · Use cases

  • Reduce token usage when web pages are included in AI agent prompts
  • Clean up web content for analysis without ads and navigation elements
  • Batch fetch multiple URLs efficiently with cached results

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

token-enhancer · Install

pip install xelektron-token-enhancer

As an MCP Server (Claude Desktop): Add to your config file:

{
  "mcpServers": {
    "token-enhancer": {
      "command": "python3",
      "args": ["-m", "mcp_server"],
      "env": {
        "REQUESTS_CA_BUNDLE": "/etc/ssl/certs/ca-certificates.crt"
      }
    }
  }
}

Remove the env block on macOS/Windows.

Comparison generated from public README + GitHub signals. Last updated automatically.