# Debug

> Show console errors and failed network requests

- Skill: `freema/debug` (Agent Skill)
- Install (CLI): `npx skillmds@latest add freema/debug`
- Raw SKILL.md: https://api.skillmd.com/api/skills/freema/debug/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: freema (https://skillmd.com/u/freema)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/freema/debug

---


# /firefox-devtools-mcp:debug

Displays debugging information from the current page.

## Usage

```
/firefox-devtools-mcp:debug              # Show all (console errors + failed requests)
/firefox-devtools-mcp:debug console      # Console messages only
/firefox-devtools-mcp:debug network      # Network requests only
```

## Examples

```
/firefox-devtools-mcp:debug
/firefox-devtools-mcp:debug console
/firefox-devtools-mcp:debug network
```

## What Happens

- `console`: Calls `list_console_messages` with `level="error"`
- `network`: Calls `list_network_requests` with `statusMin=400`
- `all` (default): Shows both console errors and failed network requests

Requires Firefox to already be running and on the page you want to debug. If Firefox is not running or is on about:blank, call `navigate_page` first.

