A powerful MCP tool for analyzing Playwright trace files with smart filtering, network analysis, and screenshot extraction
npm install @metoto/playwright-trace-analyzer-mcpA Machine Code Processing (MCP) tool for analyzing Playwright trace files directly from within Cursor or other AI coding environments.
This MCP allows you to:
1. Analyze Playwright trace.zip files without running tests
2. Extract and view detailed trace information with step-by-step execution
3. View network logs with intelligent filtering to remove bloat
4. Extract and view screenshots from trace files
5. Apply smart filtering to reduce trace file sizes by 80-95%
``bash`
npx playwright-trace-analyzer-mcp
`bash`
npm install -g playwright-trace-analyzer-mcp
`bash`
npm install playwright-trace-analyzer-mcp --save-dev
- Direct trace.zip analysis: Simply provide the path to any trace.zip file
- Smart filtering: Automatically removes analytics, third-party services, and verbose metadata
- Network log analysis: Detailed network request/response information
- Screenshot extraction: View all screenshots captured during test execution
- No test execution required: Pure analysis tool, no need to run tests
1. Configure the MCP in your .cursor/mcp.json file (or equivalent file for Claude Desktop or Claude Code):
`json`
{
"playwright-trace-analyzer": {
"command": "npx",
"args": [
"playwright-trace-analyzer-mcp"
]
}
}
- Description: Perform a comprehensive analysis of a trace.zip file, including trace execution, network logs, and screenshots. This is the recommended tool for complete trace analysis.
- Parameters:
- traceZipPath (string, required): The full path to the trace.zip file (e.g. '/path/to/trace.zip')filterPreset
- (string, optional, default: "minimal"): Choose filtering level from "minimal", "moderate", or "conservative"
- Output: Complete analysis report with errors, actions, network failures, and screenshots summary
- Description: Gets the trace from a trace.zip file. This includes step-by-step playwright test execution info along with console logs. By default returns a filtered version that removes bloated data like DOM snapshots while preserving essential debugging information.
- Parameters:
- traceZipPath (string, required): The full path to the trace.zip file (e.g. '/path/to/trace.zip')raw
- (boolean, optional, default: false): Return raw unfiltered trace including all DOM snapshots and verbose datafilterPreset
- (string, optional, default: "minimal"): Choose filtering level from "minimal", "moderate", or "conservative"
- Output: Detailed trace information showing each step of test execution and console logs (filtered by default)
- Description: Gets browser network logs from a trace.zip file. By default returns a filtered version that removes analytics, third-party services, and verbose metadata while preserving essential debugging information.
- Parameters:
- traceZipPath (string, required): The full path to the trace.zip file (e.g. '/path/to/trace.zip')raw
- (boolean, optional, default: false): Return raw unfiltered network log including all analytics, third-party services, and verbose metadatafilterPreset
- (string, optional, default: "minimal"): Choose filtering level from "minimal", "moderate", or "conservative"
- Output: Network requests and responses (filtered by default for 80%+ size reduction, focused on localhost application traffic)
- Description: Gets all available screenshots from a trace.zip file. Returns file information instead of image content for better compatibility.
- Parameters:
- traceZipPath (string, required): The full path to the trace.zip file (e.g. '/path/to/trace.zip')
- Output: List of screenshot files with paths, sizes, and modification dates
- Description: View a specific screenshot as image content. Only use this if your client supports image viewing.
- Parameters:
- traceZipPath (string, required): The full path to the trace.zip filefilename
- (string, required): The screenshot filename (e.g. 'screenshot-1.png')
- Output: Image content (if supported) or error message
- Description: Get raw trace content in pages to avoid size limits. Use this when you need the complete unfiltered trace data.
- Parameters:
- traceZipPath (string, required): The full path to the trace.zip filepage
- (number, optional, default: 1): Page numberpageSize
- (number, optional, default: 50): Number of entries per page
- Output: Paginated raw trace content with navigation info
- Description: Get raw network content in pages to avoid size limits. Use this when you need the complete unfiltered network data.
- Parameters:
- traceZipPath (string, required): The full path to the trace.zip filepage
- (number, optional, default: 1): Page numberpageSize
- (number, optional, default: 20): Number of requests per page
- Output: Paginated raw network content with navigation info
The tool supports three different filtering presets that control how much data is retained during analysis:
1. minimal (default):
- Maximum filtering - removes most DOM snapshots and redundant data
- Retains basic error and activity logs
- Ideal for quick analysis of simple issues
- Results in 90-95% size reduction
2. moderate:
- Moderate filtering - retains more console logs and contextual information
- Use when 'minimal' mode provides insufficient information
- Better context while still reducing size by 70-80%
3. conservative:
- Minimal filtering - retains almost all data except very large DOM snapshots
- Suitable for in-depth analysis of complex problems
- Still achieves 40-60% size reduction
When analyzing traces, follow this recommended approach:
1. Start with the default minimal filtering presetmoderate
2. Prioritize analysis in this order:
- Trace execution logs and errors
- Console output
- Screenshots
- Network logs (primarily for auxiliary analysis)
3. If the initial analysis doesn't provide enough context, progressively try or conservative modes
`javascript
// Basic trace analysis with default minimal filtering
{
"traceZipPath": "/path/to/trace.zip",
"filterPreset": "minimal"
}
// More detailed analysis when minimal filtering isn't sufficient
{
"traceZipPath": "/path/to/trace.zip",
"filterPreset": "moderate"
}
// Deep analysis of complex issues with maximum context
{
"traceZipPath": "/path/to/trace.zip",
"filterPreset": "conservative"
}
`
1. Analyze a trace file:
``
Use the get-trace tool with traceZipPath: "/path/to/your/trace.zip"
2. Get network logs:
``
Use the get-network-log tool with traceZipPath: "/path/to/your/trace.zip"
3. Extract screenshots:
```
Use the get-screenshots tool with traceZipPath: "/path/to/your/trace.zip"
- No test execution overhead: Analyze existing trace files without re-running tests
- Intelligent filtering: Automatically removes noise while preserving important debugging information
- Size reduction: Filtered traces are 80-95% smaller than raw traces
- Comprehensive analysis: View execution steps, network activity, and visual screenshots all in one tool