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 | — | — |
| Score | 77 | 50 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this 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-everythingtoken-optimizer-mcp · Install
Installation
- Install dependencies:
npm install- Start the MCP server:
npm start- Configure Claude Desktop:
Add to your claude_desktop_config.json:
{
"mcpServers": {
"token-optimizer": {
"command": "node",
"args": ["path/to/token-optimizer-mcp/dist/index.js"]
}
}
}