everything vs paiml-mcp-agent-toolkit
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | paiml-mcp-agent-toolkit by paiml | |
|---|---|---|
| Stars | ★ 85,748 | ★ 153 |
| 30d uses | — | — |
| Score | 77 | 49 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsOps & Infra |
| Language | TypeScript | Rust |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
paiml-mcp-agent-toolkit · Summary
PMAT is an MCP server toolkit providing deterministic code analysis and AI context generation for agents.
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
paiml-mcp-agent-toolkit · Use cases
- AI agents analyzing codebases for technical debt patterns and quality issues
- Claude Code and Cline using PMAT tools for context-aware code assistance
- CI/CD pipelines integrating quality gates with mutation testing and technical debt grading
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-everythingpaiml-mcp-agent-toolkit · Install
Install PMAT using Cargo:
cargo install pmatTo start the MCP server:
pmat mcpFor Claude Desktop integration, add to your config.json:
{
"mcpServers": {
"pmat": {
"command": "pmat",
"args": ["mcp"]
}
}
}