io.github.ofershap/real-browser
NPM · REAL-BROWSER-MCP · SCANNED AUG 3
MCP server + Chrome extension for AI browser control with real sessions.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 145 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability70
- AI-judged instruction clarity (good).Pass
- Tool/resource definitions use about 1169 tokens (~64/item across 18 items; 18 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
- Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage97
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 92% of tool parameters carry a description.Partial
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Unverified: 1 category
A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · real-browser-mcp
claude mcp add ofershap-real-browser -- npx -y real-browser-mcp
codex mcp add ofershap-real-browser -- npx -y real-browser-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"ofershap-real-browser": {
"type": "local",
"command": [
"npx",
"-y",
"real-browser-mcp"
],
"enabled": true
}
}
} openclaw mcp add ofershap-real-browser --command npx --arg -y --arg real-browser-mcp
mcp_servers:
ofershap-real-browser:
command: "npx"
args: ["-y", "real-browser-mcp"] {
"mcpServers": {
"ofershap-real-browser": {
"command": "npx",
"args": [
"-y",
"real-browser-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +44
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- Security disclosure: unverified → fail ▼ functional
- Tool coverage: unverified → 100 ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Schema quality: unverified → good ▲ functional
- Licence: MIT functional
- 2 Aug 26 −1
- Malware scan: unverified → pass ▲ security
- Tool coverage: 100 → unverified ▼ functional
- Security disclosure: fail → unverified ▼ functional
- First check of Schema quality: unverified functional
- 31 Jul 26 −25
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
browser_click ~69
Click an element on the page using a ref from snapshot or a CSS selector
| Name | Type | Req | Description |
|---|---|---|---|
| button | string | — | — |
| doubleClick | boolean | — | — |
| ref | string | — | Element reference from snapshot (e.g. "e12") |
| selector | string | — | CSS selector for the element |
No output schema declared.
No examples provided.
browser_click_text ~99
Click an element by its visible text content. Works on React dropdowns, portals, and overlays that may not appear in snapshots. CSP-safe (no eval). Prefers deepest matching element.
| Name | Type | Req | Description |
|---|---|---|---|
| exact | boolean | — | Require exact match instead of substring (default false) |
| index | number | — | Which match to click if multiple (0-based, default 0) |
| text | string | yes | Text to match against element content (first line) |
No output schema declared.
No examples provided.
browser_console ~33
Read console messages (log, warn, error) from the browser
| Name | Type | Req | Description |
|---|---|---|---|
| clear | boolean | — | Clear messages after reading |
No output schema declared.
No examples provided.
browser_evaluate ~56
Execute JavaScript in the page and return the result. Use for DOM queries, reading page state, or any operation not covered by other tools.
| Name | Type | Req | Description |
|---|---|---|---|
| expression | string | yes | JavaScript expression or code to evaluate in the page context |
No output schema declared.
No examples provided.
browser_find ~62
Find elements on the page using natural language (e.g. "login button", "search input"). Returns refs you can use with click/type.
| Name | Type | Req | Description |
|---|---|---|---|
| limit | number | — | Max matches to return |
| query | string | yes | Natural language description of what to find |
No output schema declared.
No examples provided.
browser_handle_dialog ~55
Handle JavaScript dialogs (alert, confirm, prompt). Dialogs block page interaction until handled.
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Accept or dismiss the dialog |
| promptText | string | — | Text to enter for prompt() dialogs |
No output schema declared.
No examples provided.
browser_hover ~47
Hover over an element to trigger tooltips, dropdown menus, or hover states
| Name | Type | Req | Description |
|---|---|---|---|
| ref | string | — | Element reference from snapshot |
| selector | string | — | CSS selector for the element |
No output schema declared.
No examples provided.
browser_navigate ~44
Navigate to a URL in the active browser tab
| Name | Type | Req | Description |
|---|---|---|---|
| url | string | yes | The URL to navigate to |
| waitUntil | string | — | When to consider navigation complete |
No output schema declared.
No examples provided.
browser_network ~45
Read network requests made by the page. Filter by URL pattern.
| Name | Type | Req | Description |
|---|---|---|---|
| clear | boolean | — | Clear requests after reading |
| filter | string | — | URL regex pattern to filter requests |
No output schema declared.
No examples provided.
browser_press_key ~101
Press a keyboard key or combination (Enter, Escape, Tab, ArrowDown, etc). Supports modifiers like Ctrl+A, Cmd+C.
| Name | Type | Req | Description |
|---|---|---|---|
| key | string | yes | Key name (e.g. "Enter", "Escape", "Tab", "ArrowDown", "a") |
| modifiers | array | — | Modifier keys to hold |
| ref | string | — | Element ref to focus before pressing |
| selector | string | — | CSS selector to focus before pressing |
No output schema declared.
No examples provided.
browser_screenshot ~38
Capture a screenshot of the visible page area
| Name | Type | Req | Description |
|---|---|---|---|
| format | string | — | — |
| quality | number | — | JPEG quality (ignored for PNG) |
No output schema declared.
No examples provided.
browser_scroll ~105
Scroll the page or an element. Supports pixel offsets, scrolling to elements, and named positions (top/bottom). Works with virtual scroll containers used by social media sites.
| Name | Type | Req | Description |
|---|---|---|---|
| amount | number | — | Pixels to scroll |
| direction | string | — | — |
| position | string | — | Scroll to top or bottom of page |
| selector | string | — | CSS selector of scroll container (for virtual scroll) |
| toElement | string | — | Ref or CSS selector to scroll into view |
No output schema declared.
No examples provided.
browser_select ~78
Select an option from a dropdown/select element
| Name | Type | Req | Description |
|---|---|---|---|
| index | number | — | Option index to select (0-based) |
| label | string | — | Option label text to select |
| ref | string | — | Element reference from snapshot |
| selector | string | — | CSS selector for the select element |
| value | string | — | Option value to select |
No output schema declared.
No examples provided.
browser_snapshot ~84
Get an accessibility tree snapshot of the page. Returns element refs you can use with click, type, and other tools. Use compact mode (default) for smaller output - only interactive elements.
| Name | Type | Req | Description |
|---|---|---|---|
| compact | boolean | — | When true (default), returns only interactive elements with minimal nesting. Set false for full tree. |
| selector | string | — | CSS selector to scope the snapshot |
No output schema declared.
No examples provided.
browser_tabs ~55
Manage browser tabs: list, create, close, or focus
| Name | Type | Req | Description |
|---|---|---|---|
| action | string | yes | Tab action |
| tabId | number | — | Tab ID for close/focus |
| url | string | — | URL for create action |
No output schema declared.
No examples provided.
browser_text ~46
Extract raw text content from the page or a specific element
| Name | Type | Req | Description |
|---|---|---|---|
| maxLength | number | — | Max text length to return |
| selector | string | — | CSS selector to scope text extraction |
No output schema declared.
No examples provided.
browser_type ~60
Type text into an input element
| Name | Type | Req | Description |
|---|---|---|---|
| clear | boolean | — | Clear the field before typing |
| ref | string | — | Element reference from snapshot |
| selector | string | — | CSS selector for the input |
| text | string | yes | Text to type |
No output schema declared.
No examples provided.
browser_wait ~92
Wait for a condition: element to appear, element to disappear, or a fixed delay. Useful for SPAs and dynamic content.
| Name | Type | Req | Description |
|---|---|---|---|
| delay | number | — | Fixed delay in ms (ignores selector) |
| selector | string | — | CSS selector to wait for |
| state | string | — | Wait until element is visible, hidden, or attached to DOM |
| timeout | number | — | Max wait time in ms |
No output schema declared.
No examples provided.