MCP server for analyzing Perfetto traces with LLMs — query .pftrace files in PerfettoSQL via Claude Code or any MCP client
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"perfetto-mcp-rs": {
"command": "cargo",
"args": [
"run",
"--",
"perfetto-mcp-rs"
]
}
}
}
Run in terminal:
claude mcp add perfetto-mcp-rs cargo run -- perfetto-mcp-rs
Add to .cursor/mcp.json:
{
"mcpServers": {
"perfetto-mcp-rs": {
"command": "cargo",
"args": [
"run",
"--",
"perfetto-mcp-rs"
]
}
}
}