browspark (uncaughterrs/browspark) is an MCP server listed on the M8ven Trust Index. It scores 52 out of 100, grade D. It declares 43 tools. No publisher has claimed this listing.

D
Caution
52/100

browspark

BrowserMCP and Chrome extension that let AI agents browse, click, and debug real websites in your own browser. Console, network, debugger, profiling, and Lighthouse, all from one tool call.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

uncaughterrs

Source: github_repo_search

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
⚠️
Known vulnerabilities in dependencies: 4 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
// tools this server exposes43 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

browser_status

Connection status for both modes, how to get the extension connected, shared tabs across all windows, and open dialogs. Select a listed tabId to target a tab. Call this first if anything fails.

browser_session

Developer-mode browsers: a separate Chrome the companion launches, without the user's logins. Only launch one when the user explicitly asks for it, or when a tool reported that an operation needs developer mode (heap snapshots, Lighthouse, raw CDP). For everyday work use the user's shared tabs. Each

browser_tabs

List, open, close, or activate tabs across all windows. Select a listed tabId to target a shared tab. Without tabId, tools use the agent's own usable tab or the only usable tab; multiple shared tabs require an explicit choice. Open a new tab only when the task needs a separate page. Never launch a s

browser_navigate

Navigate a tab: goto a URL, reload, back, or forward. Waits for the load event.

browser_snapshot

Accessible snapshot of the page as an indented tree. Interactive elements get refs like [ref=e12] for click/fill/select/read/wait and the devtools_elements tool. Refs stay valid until the DOM changes; re-snapshot after navigation. diff:true returns only lines that changed since the previous snapshot

browser_read

Read page content: visible text, markdown (main content converted with headings, lists, links, code, tables), links, tables (as row arrays), or raw HTML. Optionally scoped to a ref.

browser_fetch

Fetch a URL and return its main content as markdown (or text/html) without leaving a tab behind: opens a background agent tab, waits for load, reads, closes. Use for reading docs and articles.

browser_policy

Restrict where a tab (or every tab the agent opens from now on) may navigate and load from: allow lists domains that are permitted (everything else is blocked), block lists domains that are denied. Subdomains match. Non-http schemes always pass. Blocked navigations fail with ERR_BLOCKED_BY_CLIENT.

browser_download

Downloads started in the browser: list them, or wait for the newest matching download to complete, including one already completed, and get its file path when available. Developer mode saves into the context's download directory; extension mode reports downloads observed on shared tabs.

browser_pdf

Print the page to a PDF file (like Print → Save as PDF). Returns the file path.

browser_webmcp

WebMCP: pages can expose typed tools to agents via navigator.modelContext. list reports what the page exposes (or that it exposes nothing); invoke calls one by name.

browser_extract

Structured extraction: for every element matching `items`, read named fields as text or an attribute. Returns an array of objects.

browser_click

Click an element by ref with real mouse events. Also hover (hover:true) and drag (dragTo).

browser_fill

Replace the contents of a text input, textarea, or contenteditable. Use browser_select for <select>, browser_click for checkboxes, browser_upload for files.

browser_select

Choose option(s) in a <select> by value or visible label.

browser_upload

Set files on an <input type=file> by ref. Paths must be readable by the browser machine.

browser_key
browser_scroll

Scroll the page, or the nearest scrollable ancestor of a ref.

browser_screenshot

Screenshot the viewport, the full page, or one element.

browser_wait

Wait until text appears/disappears, the URL contains a string, or a ref reaches a state. Polls up to timeoutMs (default 15000).

browser_dialog

Accept or dismiss an open JavaScript alert/confirm/prompt/beforeunload dialog. browser_status shows open dialogs.

browser_batch

Run several tool calls in order in one round trip. Stops at the first error. Each step is {tool, args}.

devtools_storage

Application storage. area: cookies (list/set/delete), local or session storage (list/set/remove/clear), indexeddb (databases/stores/data/put/clearStore/deleteDatabase), cache (list/entries/delete), usage (quota and per-type usage), clear (explicitly named storage types for one origin). Origin defaul

devtools_workers

Service workers and PWA. list registrations, versions, and worker targets; update, unregister, skipWaiting, start, stop a worker; bypass routes requests around service workers; forceUpdate reloads the worker on every navigation; manifest reads the web app manifest and installability errors; evaluate

devtools_console

Search collected console output: logs, warnings, errors, uncaught exceptions, and browser log entries with stack traces. Preserved across reloads while the session runs. Actions: search (default), get (one message with full stack), inspect (an object logged by id/objectId), wait (block until a match

devtools_evaluate

Evaluate JavaScript in the page (or a specific frame/context, or the paused call frame) and return the value or the exception. Objects come back as previews with an objectId for devtools_console inspect. awaitPromise defaults to true.

devtools_debugger

JavaScript debugger. Breakpoints: set (by url/scriptId or original source via source map; line 1-based; optional condition or logMessage), remove, enable, disable, list; exceptions (none|uncaught|all); dom (subtree-modified|attribute-modified|node-removed on a ref/selector); event (listener breakpoi

devtools_elements

Elements panel. Target an element by ref (from browser_snapshot), CSS selector, or nodeId. Actions: search (CSS selector, XPath, or text; returns refs), describe, html (get/set outerHTML), attributes (get/set/remove), classes (add/remove/toggle), styles (matched rules + inline; setStyle edits inline

devtools_emulation

Device and rendering emulation. device (preset or custom viewport, scale, touch, user agent), viewport, cpu (throttle rate), network (preset), geolocation, media (color scheme, reduced motion, forced colors, print), locale/timezone, vision (deficiency), animations (playback rate, list observed), sta

devtools_accessibility

Accessibility tree and browser-reported issues. tree returns roles, names, and states for the page or a subtree (by ref/selector); node returns full properties for one element; check runs a quick audit (missing alt/labels/names, duplicate ids); issues lists problems Chrome reported (Audits domain: c

devtools_security

Security panel. state: connection security, certificate (subject, issuer, validity, protocol, cipher), and Chrome security issue ids. certificate: details for the main document or a URL. mixedContent: insecure subresources on a secure page. issues: security-related browser-reported issues (mixed con

devtools_lighthouse

Run Lighthouse (official CLI) against the developer-mode browser and return category scores, key metrics, failing audits, plus HTML and JSON report artifacts. Developer mode only; Lighthouse opens its own tab in that browser.

devtools_network

Inspect network activity collected in the session (preserved across reloads). Actions: search (filters below; searchIn picks url/headers/body/postData), get (one request: headers, timing, initiator stack, redirects, security), body (response body, JSON pretty-printed; fetched on demand if not captur

devtools_performance

Performance panel. start/stop a trace recording (Chrome trace format, opens in DevTools Performance and Perfetto). stop returns a summary: time by category, long tasks with their heaviest children, script time by URL, observed LCP/FCP/CLS, user timings. search finds trace events by name/args. compar

devtools_profile

CPU profiler. start/stop a sampling profile (.cpuprofile artifact, opens in DevTools Performance/JavaScript Profiler). stop and analyze return a bottom-up list of expensive functions (self time) and a call tree of hot paths.

devtools_memory

Memory panel. snapshot captures a .heapsnapshot artifact (opens in DevTools Memory) and summarizes objects by class with sizes and detached DOM node count. compare diffs two snapshots by class (growth). retainers lists what holds instances of a class. sampling start/stop records an allocation sampli

devtools_coverage

Coverage panel. start records JavaScript and CSS usage; stop reports per-file used/unused bytes; detail lists the unused ranges of one file with line numbers and snippets.

devtools_recorder

Record and replay browser actions. start records every browser_navigate/click/fill/select/key/wait on the tab (with a stable selector per element); stop saves the flow as a JSON artifact. add_assertion appends a browser_wait check; add_checkpoint marks a place replay can stop at; parameterize turns

devtools_session

Start or stop an inspection session on a tab. While active, console, network, exceptions, issues, scripts, and debugger events are collected across reloads. Stop removes every breakpoint, override, and emulation the session set. clear drops collected data.

devtools_events

Read or wait for events collected in the inspection session: console messages, exceptions, request start/finish/fail, breakpoint pauses, navigations, issues, service worker and animation events, recording completion. Use afterId to page forward; wait:true blocks until a matching event arrives.

devtools_capabilities

Report the browser version, connection mode, and which CDP domains work for a tab (probed live, cached per browser). Extension mode blocks some domains that direct CDP allows.

devtools_cdp

Developer mode only: run any Chrome DevTools Protocol command on a tab (or on the browser target with target:"browser"). Params must be a JSON object valid for the method.

devtools_sources

Sources panel: list loaded scripts, stylesheets, documents, frames and execution contexts; get file contents (optionally the original source via source map); search across sources by filename, text, or regex; resolve source maps; apply, list, and revert temporary resource overrides (served in place

// known CVEs in dependencies4 high1 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

high@modelcontextprotocol/sdk@1.20.0GHSA-345p-7cg4-v4c7

@modelcontextprotocol/sdk has cross-client data leak via shared server/transport instance reuse

high@modelcontextprotocol/sdk@1.20.0GHSA-8r9q-7v3j-jr4g

Anthropic's MCP TypeScript SDK has a ReDoS vulnerability

high@modelcontextprotocol/sdk@1.20.0GHSA-w48q-cv73-mx4w

Model Context Protocol (MCP) TypeScript SDK does not enable DNS rebinding protection by default

highws@8.18.0GHSA-96hv-2xvq-fx4p

ws: Memory exhaustion DoS from tiny fragments and data chunks

ws: Uninitialized memory disclosure

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configBROWSPARK_ARTIFACTS
configBROWSPARK_CHROME
configBROWSPARK_PORT
configBROWSPARK_PROFILE
configBROWSPARK_PROFILES
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

43/43 tools missing one or more hints — browser_status (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); browser_session (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); browser_tabs (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +40 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Production dependencies are patched

0 critical, 4 high severity in production deps — @modelcontextprotocol/sdk@1.20.0 (high), @modelcontextprotocol/sdk@1.20.0 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Tool description accuracy

devtools_recorder: description implies read-only but handler writes/deletes/executes

Update tool descriptions to accurately reflect all capabilities — especially write, delete, or execute operations.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 4 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/uncaughterrs/browspark?variant=verified)](https://m8ven.ai/mcp/uncaughterrs/browspark)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: bd53a18d1a0f70f3bfc7d84973bcaed06991047a
code hash: 9a55437d814c8ed893679d4df7a6ba8bde0badcd43677616105ba79f225a781d
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client