chromedevtools/chrome-devtools-mcp

memory-leak-debugging

Diagnoses and resolves memory leaks in JavaScript/Node.js applications. Use when a user reports high memory usage, OOM errors, or wants to capture, compare, or inspect heap snapshots with Chrome DevTools MCP memory tools.

All-time #5841 Trending #4355 Hot #5783 First seen Mar 25, 2026
8-week activity · all time api

Installation

$ npx skills add chromedevtools/chrome-devtools-mcp --skill memory-leak-debugging

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from chromedevtools/chrome-devtools-mcp.

npx skills add chromedevtools/chrome-devtools-mcp

Browse all from chromedevtools/chrome-devtools-mcp

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 51.4K
License LICENSE
Default branch main
Open issues 75
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,348 B
  • docs SUMMARY.md 3,960 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2,200 installs

SKILL.md

Memory Leak Debugging

This skill provides expert guidance and workflows for finding, diagnosing, and fixing memory leaks in JavaScript and Node.js applications using Chrome DevTools MCP tools.

Prerequisites

Advanced memory debugging tools (compareheapsnapshots, getheapsnapshot_details, etc.) are only available when the server is started with the --memoryDebugging flag. First check if these tools are available; if not, try to read the MCP configuration file to check if --memoryDebugging is enabled.

Core Principles

  • Prefer MCP memory tools: Do NOT attempt to read raw .heapsnapshot files directly, as they are extremely large and will consume too many tokens. Use the Chrome DevTools MCP heap snapshot tools to summarize, compare, and inspect snapshots.
  • Isolate the Leak: Determine if the leak is in the browser (client-side) or Node.js (server-side).
  • Common Culprits: Look for detached DOM nodes, unhandled closures, global variables, event listeners not being removed, and caches growing unbounded. Note: Detached DOM nodes are sometimes intentional caches; always ask the user before nulling them.
  • Close Loaded Snapshots: Heap snapshots can be large. After completing an investigation, use close_heapsnapshot for each loaded snapshot to release memory held by the MCP server.

Workflows

1. Capturing Snapshots

When investigating a frontend web application memory leak, utilize the chrome-devtools-mcp tools to interact with the application and take snapshots.

  • Use page-scoped tools like click, navigate_page, fill, etc. (specifying pageId) to manipulate the page into the desired state.
  • Revert the page back to the original state after interactions to see if memory is released.
  • Repeat the same user interactions 10 times to amplify the leak.
  • Use take_heapsnapshot (with pageId) to save .heapsnapshot files to disk at baseline, target (after actions), and final (after reverting actions) states.

2. Comparing Snapshots

Once you have generated .heapsnapshot files using take_heapsnapshot, compare them with Chrome DevTools MCP memory tools.

  • Start with getheapsnapshotsummary for each snapshot to confirm that the files load and to compare high-level totals.
  • Use compare_heapsnapshots to compare baseline and target snapshots. Start without classIndex for the summary diff, then request detailed class diffs only for suspicious growth by specifying classIndex.
  • Use the summary output from compare_heapsnapshots before drilling into specific node IDs.

3. Inspecting Retainers and Dominator Chains

When a class or object type grows unexpectedly, inspect the retaining chain and dominators with the MCP tools before changing code.

  • Use getheapsnapshotclass_nodes to list instances of the suspicious class.
  • Use getheapsnapshotretainers, getheapsnapshotretainingpaths, getheapsnapshotdominators, and getheapsnapshot_edges to understand why representative nodes are still reachable.
  • Use getheapsnapshotobject_details with a specific nodeId to retrieve detailed object metadata (size, type, distance, and DOM detachedness).
  • Use getheapsnapshotduplicate_strings when string growth dominates the diff.
  • Read [references/common-leaks.md](references/common-leaks.md) for examples of common memory leaks and how to fix them after the retaining path points at application code.

4. Advanced Analysis and Categorized Filters

Use built-in MCP memory tools and filters to pinpoint specific leak categories directly without external tools.

  • Use getheapsnapshotdetails or getheapsnapshotclass_nodes with filterName to target common leak causes:

- objectsRetainedByDetachedDomNodes: Identifies detached DOM elements retained in memory. - objectsRetainedByEventHandlers: Identifies objects kept alive by unremoved event listeners. - objectsRetainedByContexts: Identifies objects trapped in closures or execution contexts. - objectsRetainedByConsole: Identifies objects retained by console logging.