Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

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

+15 this week 61 Trust /100
Trust breakdown (6 categories)

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
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.

Install

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

# add to Claude Code
claude mcp add vola-trebla-playwright-trace-decoder-mcp -- npx -y playwright-trace-decoder-mcp
# add to Codex CLI
codex mcp add vola-trebla-playwright-trace-decoder-mcp -- npx -y playwright-trace-decoder-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vola-trebla-playwright-trace-decoder-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "playwright-trace-decoder-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add vola-trebla-playwright-trace-decoder-mcp --command npx --arg -y --arg playwright-trace-decoder-mcp
# ~/.hermes/config.yaml
mcp_servers:
  vola-trebla-playwright-trace-decoder-mcp:
    command: "npx"
    args: ["-y", "playwright-trace-decoder-mcp"]
// mcp.json
{
  "mcpServers": {
    "vola-trebla-playwright-trace-decoder-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "playwright-trace-decoder-mcp"
      ]
    }
  }
}
Changelog

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.

Diagnostics

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.

MCP tools — 16 exposed · ~1,495 tokens

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.

Tool Tokens
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.

NameTypeReqDescription
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
failing_trace_pathstringyesAbsolute path to the failing trace.zip
passing_trace_pathstringyesAbsolute 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?'

NameTypeReqDescription
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
frame_drop_threshold_msintegerScreencast frame gaps longer than this count as a drop (default 50ms)
slow_action_threshold_msintegerActions longer than this are flagged (default 500ms)
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
limitintegerMax items to return
offsetintegerNumber of items to skip
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
action_indexintegerIndex of the action whose snapshot to use (0-based). Defaults to failed action.
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
lookback_msintegerHow far back from the failure to look, in milliseconds (default 5000)
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
limitintegerMax items to return
offsetintegerNumber of items to skip
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
action_indexintegeryesIndex of the action to diff (0-based, from get_action_timeline)
trace_pathstringyesAbsolute 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

NameTypeReqDescription
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
limitintegerMax items to return
offsetintegerNumber of items to skip
trace_pathstringyesAbsolute 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.

NameTypeReqDescription
screenshot_indexinteger0-based index into the screenshot list. Omit to get the one at failure.
trace_pathstringyesAbsolute 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

NameTypeReqDescription
trace_pathstringyesAbsolute 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

NameTypeReqDescription
trace_pathstringyesAbsolute path to trace.zip, or a URL (https://) to download it from

No output schema declared.

No examples provided.