AgentStack
MCP verified MIT Self-run

ReactSentinel

mcp-edgarbnt-reactsentinel · by edgarbnt

MCP server that lets AI agents inspect, replay, validate, and patch React bugs in the browser.

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add mcp-edgarbnt-reactsentinel

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of ReactSentinel? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

React-Sentinel

> Give AI agents a runtime debugger for React apps: inspect live state, reproduce bugs, and validate fixes before editing code.

React-Sentinel is an MCP server for AI coding agents and IDE assistants. Instead of guessing from source code alone, the agent can connect to a live browser session, inspect React runtime data, replay user flows, and turn observations into assertions.

Why it exists

Most AI coding tools can edit code quickly, but they still struggle to answer simple runtime questions:

  • Which prop or state value keeps this button disabled?
  • Did the UI fail because React rendered the wrong branch, or because the API returned bad data?
  • Does a proposed fix actually work in the browser before the agent edits the repository?

React-Sentinel closes that gap by exposing a browser runtime through MCP.

Core capabilities

| Capability | What it gives the agent | |---|---| | Runtime inspection | React tree, component props, selected hook values, context values, render signals | | Replay reproduction | An isolated Playwright browser for deterministic bug reproduction | | Live attach | Optional reuse of a real Chrome tab when the bug depends on existing user state | | Assertions | Structured pass/fail checks for DOM, React state, console output, and network activity | | Shadow sandbox | Runtime-only patch validation in replay mode before touching source files |

Quick start

React-Sentinel is being prepared for public npm distribution under @edgarbrunet/react-sentinel. That is the only public npm package name documented by this repository.

Public npm command

When the scoped package is available, the recommended public command is:

npx -y @edgarbrunet/react-sentinel init-mcp --client auto --mode npx

Use --write when the target environment has a well-known project or user config path:

npx -y @edgarbrunet/react-sentinel init-mcp --client claude-code --mode npx --write
npx -y @edgarbrunet/react-sentinel init-mcp --client cursor --mode npx --write
npx -y @edgarbrunet/react-sentinel init-mcp --client github-copilot --mode npx --write

Local checkout flow

If you are running from this repository checkout before public publication:

npm install
npm run build
node dist/index.js init-mcp --client auto --mode local

Supported environments

| Environment | Status | Recommended setup | |---|---|---| | Claude Code | Supported | init-mcp --client claude-code --mode npx --write or --mode local from a checkout | | Claude Desktop | Supported | init-mcp --client claude-desktop --mode npx --write | | Cursor | Supported | init-mcp --client cursor --mode npx --write | | GitHub Copilot / VS Code | Supported | init-mcp --client github-copilot --mode npx --write | | Gemini CLI | Supported | init-mcp --client gemini-cli --mode npx --write | | Generic MCP clients | Supported manually | init-mcp --client generic-mcp --mode npx then paste the snippet manually | | Other IDE integrations | Partial | Reuse the generic MCP command and adapt the client-specific config shape |

See the full setup instructions in [docs/universal-install.md](docs/universal-install.md) and the per-environment guide in [docs/integration-guides.md](docs/integration-guides.md).

When to use React-Sentinel

Use it when the agent must understand what the app is doing at runtime, not just what the source code suggests.

  • a React bug depends on real state, props, or context;
  • the UI diverges from expected behavior after user interactions;
  • console or network signals may explain the failure faster than static reading;
  • the agent wants to validate a fix hypothesis in replay mode before editing source files.

For runtime workflows and prompt examples, see [docs/agent-runtime-ux.md](docs/agent-runtime-ux.md) and [docs/workflows.md](docs/workflows.md).

Install modes

React-Sentinel keeps the CLI binary name react-sentinel, but the public npm package name is scoped.

| Mode | Best when | Launch shape | |---|---|---| | local | You are running from this checkout or a local package install | node /absolute/path/to/dist/index.js mcp --headless | | global | You installed the CLI binary globally yourself | react-sentinel mcp --headless | | npx | You want a client to fetch the public package on demand | npx -y @edgarbrunet/react-sentinel mcp --headless |

Product docs

  • [docs/universal-install.md](docs/universal-install.md) — package naming, install modes, target selection, limitations
  • [docs/integration-guides.md](docs/integration-guides.md) — Claude, Cursor, Copilot, Gemini, and generic MCP setup guides
  • [docs/agent-runtime-ux.md](docs/agent-runtime-ux.md) — trigger heuristics, mode choice, and example agent prompts
  • [docs/adoption-checklist.md](docs/adoption-checklist.md) — onboarding checklist and validation scenarios
  • [docs/local-ports.md](docs/local-ports.md) — legitimate local URLs, ports, and CDP endpoints used in docs and tests
  • [docs/agent-pack.md](docs/agent-pack.md) — Claude Code agent-pack layout and managed files
  • [docs/workflows.md](docs/workflows.md) — deep workflow reference for Attach, Replay, Sandbox, and MCP wiring
  • [docs/local-diagnostics-checklist.md](docs/local-diagnostics-checklist.md) — troubleshooting

Local development

Requirements

  • Node.js 20+
  • npm (or pnpm if you prefer workspace tooling)
  • Playwright Chromium for replay mode

Build and validate

npm install
npm run check
npm run build
cd examples/test-app && npm install && npm run build

If Playwright Chromium is missing:

npx playwright install chromium

Start the server locally

node dist/index.js mcp --headless

Run the smoke benchmark

npm run e2e:smoke

Project structure

src/                 CLI, MCP server, runtime tools
docs/                Public product and workflow documentation
assets/agent-pack/   Reusable agent-pack assets and profile guidance
examples/test-app/   Local demo app and validation fixture

Current limits

  • Live attach still depends on Chrome remote debugging.
  • Shadow sandbox currently validates runtime-only script patches in replay mode, not full source rewrites.
  • Some agent environments share the same MCP transport but differ in config shape, prompt UX, and restart behavior.
  • Public npm publication and visibility changes remain gated by manual release checks.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.