io.github.vola-trebla/playwright-trace-decoder-mcp
NPM · PLAYWRIGHT-TRACE-DECODER-MCP · SCANNED AUG 3
MCP server for unpacking and analyzing Playwright trace.zip archives
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security70
- No malware found by supply-chain analysis.Pass
- CVE check failed: a known high-severity CVE affects adm-zip 0.5.18, a direct dependency. A fixed version is available. View diagnostics → Fail
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 76 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability81
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 1495 tokens (~93/item across 16 items; 16 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · playwright-trace-decoder-mcp
claude mcp add vola-trebla-playwright-trace-decoder-mcp -- npx -y playwright-trace-decoder-mcp
codex mcp add vola-trebla-playwright-trace-decoder-mcp -- npx -y playwright-trace-decoder-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"vola-trebla-playwright-trace-decoder-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"playwright-trace-decoder-mcp"
],
"enabled": true
}
}
} openclaw mcp add vola-trebla-playwright-trace-decoder-mcp --command npx --arg -y --arg playwright-trace-decoder-mcp
mcp_servers:
vola-trebla-playwright-trace-decoder-mcp:
command: "npx"
args: ["-y", "playwright-trace-decoder-mcp"] {
"mcpServers": {
"vola-trebla-playwright-trace-decoder-mcp": {
"command": "npx",
"args": [
"-y",
"playwright-trace-decoder-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +35
- CVE-2026-39244 affects this package: high ▼ security
- Provenance: unverified → fail ▼ security
- Known CVEs: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
- Capabilities: pass → unverified ▼ functional
- Schema quality: unverified → excellent ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 +5
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- MCP protocol: unverified → pass ▲ functional
- 31 Jul 26 −25
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Vulnerabilities 1 finding
| ID | CVE | Severity | Vector | Fix available |
|---|---|---|---|---|
| GHSA-xcpc-8h2w-3j85 | CVE-2026-39244 | high | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H | yes |
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
analyze_race_conditions ~63
Detects potential race conditions by finding network requests that were still in-flight when a user interaction action fired. Returns flagged actions with pending requests.
| Name | Type | Req | Description |
|---|---|---|---|
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
compare_traces ~90
Compares a passing and a failing trace of the same test. Aligns actions by sequence, finds the first timing or structural divergence, and summarises network differences. Use to diagnose flakiness — what was different in the run that failed.
| Name | Type | Req | Description |
|---|---|---|---|
| failing_trace_path | string | yes | Absolute path to the failing trace.zip |
| passing_trace_path | string | yes | Absolute path to the passing trace.zip |
No output schema declared.
No examples provided.
correlate_dom_and_network ~124
Joins the HAR network log and DOM snapshots into an explicit causal chain. For each action where a network response completed and the DOM mutated within ±100ms, returns the triggering request URL, response status, body snippet, and the exact DOM nodes that appeared or disappeared. Background polling and analytics pixels are filtered out. Use to diagnose race conditions and async rendering bugs — removes hallucination from the question 'did this fetch cause this DOM change?'
| Name | Type | Req | Description |
|---|---|---|---|
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
detect_performance_anomalies ~187
Detects Long Tasks and frame drops that cause Playwright timeouts. Analyses screencast-frame timestamps for main-thread blocking (gaps > 50ms), flags actions that took longer than 500ms, counts concurrent in-flight network requests during each slow action, and checks for monotonically increasing action durations (suspected memory leak). Returns a ranked list of anomalies with a suspected_cause so the agent can distinguish a blocked main thread from network saturation or a navigation timeout — without blaming a missing element.
| Name | Type | Req | Description |
|---|---|---|---|
| frame_drop_threshold_ms | integer | — | Screencast frame gaps longer than this count as a drop (default 50ms) |
| slow_action_threshold_ms | integer | — | Actions longer than this are flagged (default 500ms) |
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
extract_trace_metadata_strict ~141
Strictly inspects a Playwright trace archive and returns format version, retry session breakdown, and HAR payload mode. Handles .pwtrace.zip extensions (newer Playwright CI), multi-retry archives (identifies which retry failed), and all three HAR modes: embed (bodies inline), attach (bodies as separate files), omit (headers only). Use before other trace tools when the archive may be from an unfamiliar Playwright version or CI configuration — confirms the trace is valid and tells you what data is available.
| Name | Type | Req | Description |
|---|---|---|---|
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
generate_error_signature ~77
Generates a stable 12-char hash signature for a test failure by normalizing the error message (stripping paths, numbers, UUIDs). Use to group duplicate failures across parallel CI runs without reading each trace manually.
| Name | Type | Req | Description |
|---|---|---|---|
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_action_timeline ~82
Returns a paginated timeline of all actions with locators and timings. Use limit/offset to page through large traces.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Max items to return |
| offset | integer | — | Number of items to skip |
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_aria_accessibility_tree ~115
Returns the ARIA accessibility tree (YAML) for a frame snapshot in the trace. Reduces DOM token cost by ~90% vs raw HTML. Use action_index to target a specific action — defaults to the failed action, or the last snapshot if no failure.
| Name | Type | Req | Description |
|---|---|---|---|
| action_index | integer | — | Index of the action whose snapshot to use (0-based). Defaults to failed action. |
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_causal_chain_for_failure ~93
Walks backwards from the failed action and builds a chronological chain of preceding actions, network errors, and console errors. Surfaces the most likely root cause.
| Name | Type | Req | Description |
|---|---|---|---|
| lookback_ms | integer | — | How far back from the failure to look, in milliseconds (default 5000) |
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_console_errors ~72
Returns JS exceptions and warnings. Use limit/offset to page through results.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Max items to return |
| offset | integer | — | Number of items to skip |
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_dom_mutation_delta ~91
Diffs the ARIA tree before and after a specific action. Returns added and removed elements so the agent sees exactly what changed without comparing two full DOM dumps.
| Name | Type | Req | Description |
|---|---|---|---|
| action_index | integer | yes | Index of the action to diff (0-based, from get_action_timeline) |
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_element_state_at_failure ~49
Returns DOM attributes of the failing element at the moment of failure
| Name | Type | Req | Description |
|---|---|---|---|
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_filtered_network_logs ~82
Returns only 4xx/5xx network responses, stripping static assets. Use limit/offset to page through results.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | integer | — | Max items to return |
| offset | integer | — | Number of items to skip |
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_screenshot_at_failure ~130
Returns the screenshot (base64 JPEG) from the trace closest to the moment of failure. Use when get_aria_accessibility_tree returns an empty or unhelpful tree — the image shows exactly what was on screen. Pass screenshot_index to retrieve any specific screenshot from the trace (0-based); omit to get the one nearest to the failure.
| Name | Type | Req | Description |
|---|---|---|---|
| screenshot_index | integer | — | 0-based index into the screenshot list. Omit to get the one at failure. |
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_test_metadata ~50
Returns test metadata: title, browser, platform, viewport, and start time
| Name | Type | Req | Description |
|---|---|---|---|
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.
get_trace_summary ~49
Returns the failing action and top-level error message from a Playwright trace
| Name | Type | Req | Description |
|---|---|---|---|
| trace_path | string | yes | Absolute path to trace.zip, or a URL (https://) to download it from |
No output schema declared.
No examples provided.