MCP Catalogs
Home

Pare vs everything

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

Pare
by Dave-London
everything
by modelcontextprotocol
Stars★ 121★ 85,748
30d uses
Score4977
Official
Categories
Developer ToolsOps & InfraAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

Pare · Summary

MCP servers that transform CLI tools into structured JSON outputs for AI agents, reducing token usage by up to 95%.

everything · Summary

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

Pare · Use cases

  • Automating git operations and status checks in development workflows
  • Integrating npm package management with AI coding assistants
  • Running and analyzing test results through structured JSON output

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

Pare · Install

Install Pare MCP servers using:

# Quick setup (non-interactive)
npx @paretools/init --client claude-code --preset web

# Add agent rules to your project
cat node_modules/@paretools/init/rules/CLAUDE.md >> CLAUDE.md

# Validate installation
npx @paretools/init doctor

For Claude Desktop, add to config.json:

{
  "mcpServers": {
    "pare-git": {
      "command": "npx",
      "args": ["-y", "@paretools/git"]
    },
    "pare-npm": {
      "command": "npx", 
      "args": ["-y", "@paretools/npm"]
    }
  }
}

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.