browse

browse is a skill for Claude Code from adbarc92/mcp-browser-bridge. It costs 42 tokens per session (487 once invoked), scanned A, original, MIT.

Browser controls for Chromium, the open-source browser behind Google Chrome, including navigation, page reading, form filling, screenshots, clicks, and JavaScript execution.

In plain words
What is it for?
Use it to open web pages, read their content, fill in forms, click controls, run page scripts, wait for elements, and check browser logs.
Why use it?
It lets the coding agent inspect and operate websites instead of relying only on source files or descriptions.

Skill for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

Good fit Use it to open web pages, read their content, fill in forms, click controls, run page scripts, wait for elements, and check browser logs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/adbarc92/mcp-browser-bridge/browse
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add adbarc92/mcp-browser-bridge --skill browse
Clone the repo
git clone --depth 1 https://github.com/adbarc92/mcp-browser-bridge

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for browse

README.md
[![agentmods](https://agentmods.dev/badge/skills/adbarc92/mcp-browser-bridge/browse/github.svg)](https://agentmods.dev/skills/adbarc92/mcp-browser-bridge/browse)
Your own site
<a href="https://agentmods.dev/skills/adbarc92/mcp-browser-bridge/browse"><img src="https://agentmods.dev/badge/skills/adbarc92/mcp-browser-bridge/browse/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for browse

Your own site · 80×15
<a href="https://agentmods.dev/skills/adbarc92/mcp-browser-bridge/browse"><img src="https://agentmods.dev/badge/skills/adbarc92/mcp-browser-bridge/browse.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 487 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.00487
Opus 5 $0.00021 $0.00244
Sonnet 5 $0.00008 $0.00097
Haiku 4.5 $0.00004 $0.00049

Measured 8d ago against content hash f2d4bc295e0f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

browse scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/browse/SKILL.md · 46 lines

What it actually says

Browse

Gives you direct access to a Chromium browser via the Browser Bridge MCP tools.

Available Tools

Tool Purpose
browser_status Check connection and get active tab info
browser_navigate Go to a URL
browser_screenshot Capture visible area of a tab
browser_evaluate Run JavaScript in the page context
browser_click Click an element by CSS selector
browser_fill Fill a form field by CSS selector
browser_get_content Get text or HTML of a page or element
browser_get_tabs List all open tabs
browser_get_console Get console logs from a tab
browser_wait_for Wait for a selector to appear

Workflow

  1. Always start with browser_status to confirm the extension is connected.
  2. Use browser_navigate to go to the target page.
  3. Use browser_screenshot to see the current state before interacting.
  4. After any interaction (click, fill), take another screenshot to verify the result.

Selector Tips

  • Prefer [data-testid="foo"] selectors when available.
  • button:has-text("Submit") is NOT supported — use browser_evaluate to find elements by text content instead.
  • For scrolling, use browser_evaluate with document.querySelector('selector').scrollIntoView(). Do NOT use window.scrollBy() — it doesn't work with many framework scroll containers.

Gotchas

  • Screenshots require a visible, focused tab. Minimized or background tabs will fail.
  • browser_evaluate results must be JSON-serializable. Promises return {} — use synchronous expressions or await inside an IIFE and return a primitive/plain object.
  • browser_fill works with React. It uses native property setters to trigger React state updates.
  • All tools accept an optional tabId. Omit it to target the active tab.

Task: $ARGUMENTS

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 46 lines · 42 tokens per session scan A f2d4bc295e0f

Subscribe to this mod's changes

browse is a skill published in the GitHub repository adbarc92/mcp-browser-bridge (1 stars, last pushed 9d ago), licensed MIT. It adds 42 tokens to every session and 487 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

signed-in-browser

Drive the browser the user is already signed into, instead of a cold automation profile. Use when a task lives behind a login — a dashboard, an admin console, an internal tool, a ticket queue, a bank or billing page, webmail, a social account — or when a scripted login is failing on SSO, MFA, CAPTCHA or bot detection.…

t3ratech/mcp-session-bridge · 109 tokens

post-to-hacker-news

Submit to Hacker News, including Show HN, by driving a signed-in browser. Use when launching a product, tool or MCP server, or when a submission needs its customary author comment. Covers the title rules, when a Show HN is allowed, the url-or-text choice, and how to tell a real submission from a silent failure.

t3ratech/mcp-session-bridge · 75 tokens

browser

Use this skill when the user says browser, /browser, test in Chrome, inspect a webpage, verify a localhost app, capture screenshots, check console/network errors, run browser QA, or automate browser flows with the Mochi browser MCP.

DevZonayed/Mochi · 50 tokens

x402

Set up Browser Use Cloud payments with x402 — pay per request from a crypto wallet (USDC on Base mainnet), no signup or API key. Two setups it works out up front — "just use it" (set up a wallet so you or Claude Code can run cloud browser tasks paid from the wallet — Claude writes and runs throwaway scripts, nothing…

browser-use/browser-use · 175 tokens

browser-use

Direct browser control via CDP for web interaction: automation, scraping, testing, screenshots, and site/app work.

browser-use/browser-use · 26 tokens

remote-browser

Controls an isolated Browser Use Cloud browser from a sandboxed machine with the current Browser Use CLI.

browser-use/browser-use · 22 tokens