New to Claude Skills? Learn how to install them →

chromedevtools on GitHub

Memory Leak Debugging

Free

Diagnose and fix JavaScript memory leaks with ease.

Get this skill

Free · Opens the source repo

What Memory Leak Debugging does

Memory leaks in JavaScript and Node.js applications can lead to performance degradation and crashes, making it crucial for developers to address these issues promptly. The Memory Leak Debugging skill leverages Chrome DevTools MCP tools to provide a structured approach to identifying, diagnosing, and resolving memory leaks. This skill is particularly useful for developers who encounter high memory usage reports, out-of-memory (OOM) errors, or simply want to ensure their applications run efficiently.

The skill emphasizes the importance of using MCP memory tools rather than attempting to read raw heap snapshot files directly, which can be cumbersome and resource-intensive. By guiding users through the process of isolating leaks—whether they originate from client-side or server-side code—the skill helps streamline the debugging process. Common culprits such as detached DOM nodes, unhandled closures, and unremoved event listeners are identified, allowing developers to focus on the most likely sources of memory retention.

Workflows provided in this skill include capturing snapshots of application memory states, comparing these snapshots to identify growth patterns, and inspecting retainers and dominator chains to understand why certain objects remain in memory. This structured approach not only aids in pinpointing the source of leaks but also provides actionable insights for fixing them. Additionally, advanced analysis tools and categorized filters help developers quickly target specific leak categories without needing external tools.

Overall, this skill is designed for developers who need a reliable method for diagnosing memory issues in their JavaScript and Node.js applications. By following the outlined workflows and utilizing the MCP tools effectively, users can enhance application performance and stability.

When to use it

Use this skill when you encounter high memory usage, OOM errors, or need to analyze heap snapshots for memory leaks.

When not to use it

This skill may not be suitable for applications outside of JavaScript or Node.js, or for users unfamiliar with Chrome DevTools.

What you can build with it

Identifying High Memory Usage

When a user reports high memory usage in a web application, use this skill to diagnose the issue and pinpoint the source of the leak.

Resolving OOM Errors

If your application encounters out-of-memory errors, this skill provides workflows to analyze and fix the underlying memory leaks.

Optimizing Application Performance

Use this skill to regularly check for memory leaks during development, ensuring your application runs efficiently and reliably.

How to install Memory Leak Debugging

View source

1. Install with the skills CLI

npx skills add chromedevtools/chrome-devtools-mcp/memory-leak-debugging --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by chromedevtools

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.

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 tools like click, navigate_page, fill, etc., 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 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 get_heapsnapshot_summary 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 get_heapsnapshot_class_nodes to list instances of the suspicious class.
  • Use get_heapsnapshot_retainers, get_heapsnapshot_retaining_paths, get_heapsnapshot_dominators, and get_heapsnapshot_edges to understand why representative nodes are still reachable.
  • Use get_heapsnapshot_object_details with a specific nodeId to retrieve detailed object metadata (size, type, distance, and DOM detachedness).
  • Use get_heapsnapshot_duplicate_strings when string growth dominates the diff.
  • Read 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 get_heapsnapshot_details or get_heapsnapshot_class_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.

Frequently asked questions about Memory Leak Debugging

Similar skills