MCP Catalogs
Home

everything vs token-optimizer-mcp

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

everything
by modelcontextprotocol
token-optimizer-mcp
by ooples
Stars★ 85,748★ 369
30d uses
Score7750
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

everything · Summary

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

token-optimizer-mcp · Summary

MCP server for intelligent token optimization in Claude Code with caching and compression features.

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-optimizer-mcp · Use cases

  • Optimizing token usage for large codebases in Claude Code
  • Reducing API costs by minimizing unnecessary token consumption
  • Improving response speed through intelligent caching of code context

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-optimizer-mcp · Install

Installation

  1. Install dependencies:
npm install
  1. Start the MCP server:
npm start
  1. Configure Claude Desktop:

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "token-optimizer": {
      "command": "node",
      "args": ["path/to/token-optimizer-mcp/dist/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.