Skip to content

Prompts

Frontend Debugger ships with 5 MCP prompts — multi-step workflows that chain tools together for common tasks. MCP clients can invoke these as pre-built sequences.

audit-page

Comprehensive page audit covering accessibility, contrast, focus order, ARIA, and performance.

Input:

ParameterTypeDescription
urlstringPage URL to audit

Sequence: connectnavigatedetectaudit_a11yaudit_contrastaudit_focus_orderaudit_aria_validaudit_perf

Output: All findings grouped by severity, plus the top 3 recommended fixes.

debug-component

Deep-dive into a React component's behavior.

Input:

ParameterTypeDescription
urlstringPage URL
componentstringComponent name to inspect

Sequence: connectnavigatedetectcomponent_inspectcomponent_render_reasonscomponent_state_storesscreenshot

Output: Component props, hooks, state, re-render analysis, and global store state.

trace-error

Reproduce an error and trace its root cause.

Input:

ParameterTypeDescription
urlstringPage URL
stepsstringOptional reproduction steps

Sequence: connectreplay_startnavigatereproducereplay_stopreplay_network_causereplay_get_bundlereplay_export_html

Output: Causal chain from network failures to JavaScript errors, plus an exportable HTML replay.

visual-regression

Capture or compare visual baselines.

Input:

ParameterTypeDescription
urlstringPage URL
namestringBaseline name
modestringcapture or compare

Sequence:

  • Capture mode: connectnavigateaudit_snapshotscreenshot
  • Compare mode: connectnavigateaudit_diffscreenshot

Output: Baseline saved confirmation, or diff analysis with percentage and overlay image.

storybook-audit

Audit accessibility across all Storybook stories.

Sequence: connectcomponent_storiesfor each story: component_render_storyaudit_a11yaudit_contrast → compiled report

Output: Violations grouped by component, systemic issues identified across the design system.

Released under the MIT License.