perfetto-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
perfetto-mcp by antarikshc | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 178 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsMonitoringOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
perfetto-mcp · Summary
An MCP server that transforms natural language prompts into Perfetto trace analyses for Android performance debugging.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
perfetto-mcp · Use cases
- Diagnose application performance issues in Android traces using natural language
- Automatically analyze ANR events and identify root causes
- Profile CPU usage and frame performance without writing SQL
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
perfetto-mcp · Install
Installation
**Using uvx (recommended)**:
For Cursor:
{
"mcpServers": {
"perfetto-mcp": {
"command": "uvx",
"args": ["perfetto-mcp"]
}
}
}For Claude Code:
claude mcp add perfetto-mcp --scope user -- uvx perfetto-mcpFor VS Code: Add to .vscode/mcp.json:
{
"mcpServers": {
"perfetto-mcp": {
"command": "uvx",
"args": ["perfetto-mcp"]
}
}
}**Using pip**:
pip3 install perfetto-mcp
python3 -m perfetto_mcp**Prerequisites**:
- Python 3.13+
- uv (recommended)
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