browser-dvr-mcp GEMINI.md

browser-dvr-mcp GEMINI.md is an instructions file for Gemini CLI from funkyfunc/browser-dvr-mcp. It costs 706 tokens per session, scanned A, original, MIT.

A set of development rules for a browser-control server used by coding agents. It covers how the server handles screen coordinates, embedded pages called iframes, combined actions, and tests.

In plain words
What is it for?
Use it when changing the browser-control server or checking that visual inspection and interaction tools work together across iframes.
Why use it?
It helps prevent clicks from landing in the wrong place and reduces browser automation regressions, especially in pages with nested or scaled embedded content.

Instructions file for Gemini CLI

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.

agentmods
npx agentmods add instructions/funkyfunc/browser-dvr-mcp/gemini-md
Clone the repo
git clone --depth 1 https://github.com/funkyfunc/browser-dvr-mcp

Made for: Gemini CLI.

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 browser-dvr-mcp GEMINI.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/funkyfunc/browser-dvr-mcp/gemini-md.svg)](https://agentmods.dev/instructions/funkyfunc/browser-dvr-mcp/gemini-md)
Your own site
<a href="https://agentmods.dev/instructions/funkyfunc/browser-dvr-mcp/gemini-md"><img src="https://agentmods.dev/badge/instructions/funkyfunc/browser-dvr-mcp/gemini-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 706 This file is loaded in full into every session.
When invoked 706 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.00706 $0.00706
Opus 5 $0.00353 $0.00353
Sonnet 5 $0.00141 $0.00141
Haiku 4.5 $0.00071 $0.00071

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

Security

Grade A, and why

browser-dvr-mcp GEMINI.md 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 3d 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.

GEMINI.md · 59 lines

How it starts

The opening of the file, as written. The whole thing — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Best Browser MCP Developer Guidelines & Agent Rules

To ensure high reliability of autonomous browser automation and avoid regressions, all developers and coding agents modifying the best-browser MCP server must adhere strictly to the following architectural design principles.


1. Unified Viewport Coordinate Space Principle

All tools that return visual coordinates, bounding boxes, or click targets must return them normalized to the main viewport pixel space.

  • The Rule: No tool should ever return raw layout-relative or iframe-local coordinates. All calculations must resolve the target frame offsets using the helper getFrameOffset(frame) and add them to the coordinates before outputting values to the agent.
  • Impact: This ensures that geometry surfaced by perception (e.g. get_semantic_surface) is immediately compatible with interaction tools (e.g. atomic_interact), preventing coordinate shift deadlocks.

2. Universal Subframe/Iframe Support

Enterprise web applications and design canvases utilize nested, scaled, same-origin, and cross-origin iframes. All perception and inspection tools must pierce these boundaries.

  • The Rule: Any tool querying element properties, structures, styles, or listeners (e.g., evaluate_in_context, browser_get_listeners, get_element_tree) must support frame context switching.
  • Protocol Targeting: Use findFrameForBackendNodeId to locate the target subframe CDP session, and pass the target frameId explicitly to CDP calls (such as Accessibility.getFullAXTree) to avoid falling back to the main document context.

3. Atomic "Locate-and-Act" Operations

To eliminate Virtual DOM element detachment and stale references, keep interaction operations atomic.

  • The Rule: Never cache backend element handles across agent reasoning cycles. Prefer the atomic_interact tool, which locates the node (using backendNodeId) and dispatches native browser events in the exact same execution tick.

Read the full file on GitHub · 59 lines

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. 3d ago First seen · 59 lines · 706 tokens per session scan A 8e12436c05b1

Subscribe to this mod's changes

browser-dvr-mcp GEMINI.md is an instructions file published in the GitHub repository funkyfunc/browser-dvr-mcp (0 stars, last pushed 1mo ago), licensed MIT. It adds 706 tokens to every session, about $0.0035 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 instructions, from other repositories