Skip to content

How to Connect KaBOOM to Claude Code

Want Claude Code to understand what is happening in the browser, not just in your source files?

This is the setup.

Terminal window
npx -y kaboom-agentic-browser --help

If this command works, you are ready to connect.

Step 2: Add KaBOOM in Claude Code MCP config

Section titled “Step 2: Add KaBOOM in Claude Code MCP config”

Add this server entry:

{
"mcpServers": {
"kaboom": {
"command": "npx",
"args": ["-y", "kaboom-agentic-browser"]
}
}
}

Reload so it picks up the new MCP server configuration.

observe({what: "errors"})
observe({what: "network_waterfall", status_min: 400})
generate({what: "reproduction"})

Now Claude Code can help with bug triage using runtime evidence.

[Image Idea] Claude Code MCP config panel with the kaboom block highlighted.

[Diagram Idea] Claude Code prompt -> KaBOOM observe/analyze -> fix suggestion loop.