MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

P
Perfetto MCP Rs
作者 @0xZOne

MCP server for analyzing Perfetto traces with LLMs — query .pftrace files in PerfettoSQL via Claude Code or any MCP client

创建于 4/12/2026
更新于 about 5 hours ago
Repository documentation and setup instructions

perfetto-mcp-rs

English | 简体中文

An MCP server for analyzing Perfetto traces with LLMs. Point Claude Code (or any MCP client) at a .perfetto-trace / .pftrace file and query it with PerfettoSQL.

Backed by trace_processor_shell — downloaded automatically on first run, no manual Perfetto install required.

Quick install

Linux / macOS / Windows (Git Bash, MSYS2, Cygwin):

curl -fsSL https://raw.githubusercontent.com/0xZOne/perfetto-mcp-rs/main/install.sh | sh

Windows (PowerShell):

irm https://raw.githubusercontent.com/0xZOne/perfetto-mcp-rs/main/install.ps1 | iex

Both installers drop the prebuilt binary into ~/.local/bin (or %USERPROFILE%\.local\bin on Windows), add it to your user PATH if needed, and — if Claude Code is installed — register it as a user-scope MCP server. Restart Claude Code to pick it up.

Supported platforms: linux amd64/arm64, macOS amd64/arm64, Windows amd64. If you'd rather not run a script, grab the binary directly from the releases page.

Uninstall

One-liner per platform. Unregisters the MCP server from Claude Code, removes the binary, and deletes the cached trace_processor_shell.

Linux:

claude mcp remove perfetto-mcp-rs --scope user 2>/dev/null; rm -f ~/.local/bin/perfetto-mcp-rs; rm -rf ~/.local/share/perfetto-mcp-rs

macOS:

claude mcp remove perfetto-mcp-rs --scope user 2>/dev/null; rm -f ~/.local/bin/perfetto-mcp-rs; rm -rf "$HOME/Library/Application Support/perfetto-mcp-rs"

Windows (PowerShell) — close Claude Code first so the .exe isn't locked:

if (Get-Command claude -ErrorAction SilentlyContinue) { claude mcp remove perfetto-mcp-rs --scope user 2>$null }; Remove-Item -Force "$HOME\.local\bin\perfetto-mcp-rs.exe*" -ErrorAction SilentlyContinue; Remove-Item -Recurse -Force "$env:LOCALAPPDATA\perfetto-mcp-rs" -ErrorAction SilentlyContinue

Tools

| Tool | Purpose | |---|---| | load_trace | Open a .perfetto-trace / .pftrace file (must be called first) | | list_tables | List tables/views in the loaded trace, optional GLOB filter | | table_structure | Show column names and types for a table | | execute_sql | Run a PerfettoSQL query, returns JSON rows (max 5000) |

Typical flow: load_tracelist_tables to discover the schema → table_structure on interesting tables → execute_sql to query. Chrome and Android trace analysis is done via INCLUDE PERFETTO MODULE chrome.xyz / android.xyz — the included modules persist for subsequent queries against the same trace.

Example

Ask Claude Code something like:

Load ~/traces/scroll_jank.pftrace and tell me the top scroll jank causes.

Claude will call load_trace, then issue a query like:

INCLUDE PERFETTO MODULE chrome.scroll_jank.scroll_jank_v3;
SELECT cause_of_jank, COUNT(*) AS n
FROM chrome_janky_frames
GROUP BY cause_of_jank
ORDER BY n DESC;

Manual MCP client configuration

If the installer's auto-registration doesn't apply to your client, add this to your MCP server config (e.g. ~/.claude.json or .mcp.json):

{
  "mcpServers": {
    "perfetto-mcp-rs": {
      "command": "/absolute/path/to/perfetto-mcp-rs"
    }
  }
}

Configuration

| Variable | Effect | |---|---| | PERFETTO_TP_PATH | Path to an existing trace_processor_shell binary; skips auto-download | | RUST_LOG | tracing-subscriber filter, e.g. RUST_LOG=debug for verbose logs (written to stderr) |

CLI flags:

| Flag | Default | Description | |---|---|---| | --max-instances | 3 | Maximum cached trace_processor_shell processes (LRU-evicted) |

Build from source

Requires a Rust toolchain and protoc (Protocol Buffers compiler):

# Ubuntu/Debian
sudo apt install -y protobuf-compiler
# macOS
brew install protobuf
# Windows
choco install protoc

Then:

git clone https://github.com/0xZOne/perfetto-mcp-rs
cd perfetto-mcp-rs
cargo build --release
# Binary at target/release/perfetto-mcp-rs

Development

cargo test          # unit tests
cargo clippy        # lint
cargo fmt           # format

License

Dual-licensed under either of Apache License, Version 2.0 or MIT license at your option. Contributions are accepted under the same terms.

快速设置
此服务器的安装指南

安装命令 (包未发布)

git clone https://github.com/0xZOne/perfetto-mcp-rs
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。

Cursor 配置 (mcp.json)

{ "mcpServers": { "0xzone-perfetto-mcp-rs": { "command": "git", "args": [ "clone", "https://github.com/0xZOne/perfetto-mcp-rs" ] } } }