Skip to content

How to Connect KaBOOM to Cursor

Cursor is excellent for writing code. KaBOOM makes Cursor workflows browser-aware.

Here is the fastest setup path.

Step 1: Confirm KaBOOM command is available

Section titled “Step 1: Confirm KaBOOM command is available”
Terminal window
npx -y kaboom-agentic-browser --help

Step 2: Add KaBOOM as an MCP server in Cursor

Section titled “Step 2: Add KaBOOM as an MCP server in Cursor”

Use this config block:

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

Restart so Cursor reloads MCP servers.

observe({what: "errors"})
observe({what: "network_bodies", status_min: 400})
generate({what: "test", test_name: "first-cursor-kaboom-check"})

Now you have a repeatable baseline, not a one-off debugging session.

[Image Idea] Cursor MCP settings showing a connected kaboom server.

[Diagram Idea] Cursor edit loop with runtime checks between each change.