AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Jev Ra

mcp-brnyxx-jev-ra · by brnyxx

Browser use for coding agents, 3-5x faster than browser-use. MCP server + CLI; TypeSafe Jev decides every step in ~300 ms.

— No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add mcp-brnyxx-jev-ra

✓ 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-brnyxx-jev-ra)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● yesterday

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Jev Ra? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

[](https://github.com/brnyxx/jev-ra/blob/main/docs/BENCHMARKS.md)

English · 한국어 · 日本語 · 简体中文

Site: brnyxx.github.io/jev-ra replays a real recorded run and explains the pipeline.

jev-ra

A fast browser-use layer for CLI coding agents. Claude Code, Codex, or any MCP client hands jev-ra a goal. TypeSafe Jev, a System One decision model, picks the operation and the target element for every step in one round trip. Your agent plans, supplies the text values, reads what the page says, and takes over when jev-ra escalates. No second LLM runs inside the loop.

| task | browser-use 0.13.10 + gemini-3-flash flash_mode | jev-ra | | |---|---|---|---| | Wikipedia: open the Gödel incompleteness article | 23,058 ms | 2,714 ms | 8.50× | | Google Flights ZRH→LON one-way, results on screen | 66,414 ms | 8,888 ms | 7.47× | | Olive Young category: sort by 신상품순 | 15,071 ms | 3,806 ms | 3.96× |

Measured 2026-09-18 on one machine and one dedicated Chrome, both tools through OpenRouter. jev-ra is the median of 5 runs; browser-use is its single recorded run, which was faster than its own 5-run median on every task. Each jev-ra run was verified against the final page; 25 of 25 passed with no text-model calls. Method, p90, cost and raw rows.

Quick start

Claude Code

export OPENROUTER_API_KEY=sk-or-...
uvx jev-ra install claude
# then, in Claude Code: "open wikipedia.org and find the Gödel incompleteness article"

Codex

export OPENROUTER_API_KEY=sk-or-...
uvx jev-ra install codex
# then, in Codex: "use jev-ra to open wikipedia.org and find the Gödel incompleteness article"

Shell

export OPENROUTER_API_KEY=sk-or-...
uvx jev-ra doctor
uvx jev-ra run https://en.wikipedia.org/wiki/Main_Page "Open the Godel incompleteness article." \
  --value "search_query=Godel incompleteness theorems"

No Python setup? npx -y jev-ra install claude does the same thing through the npm launcher. The npm package is a launcher only: it finds uv, offers to install it, and runs the PyPI package pinned to its own version.

There is no install step either way: uvx runs jev-ra straight from PyPI and registers uvx jev-ra mcp as the server command. For a permanent copy, uv tool install jev-ra. The key is forwarded from the variable you already exported and is never printed.

No Chrome on the machine either? The repository's Dockerfile builds an image with a Chromium in it: docker build -t jev-ra . then docker run --rm -e OPENROUTER_API_KEY jev-ra doctor. Chrome's own sandbox needs a user namespace a container's seccomp profile usually refuses, so jev-ra launches it once, reads what it said, and starts it again without the sandbox when that is why it would not run.

How it works

One decision per step. The only text typed into the page is text you supplied.

MCP tools

| tool | arguments | what it does | |---|---|---| | browser_open | url | Open a URL in the shared session and summarise the page. | | browser_run | goal, values?, maxsteps?, resume? | Pursue a whole goal. Supply values for anything that must be typed. resume carries on a run that stopped with needs_human. | | browser_search | query, goal?, maxpages? | Search, read the best results in parallel tabs, rank them against the goal. | | browser_act | instruction, values? | Take one decided step towards an instruction. | | browser_observe | maxelements? | List the observed controls and the visible text. | | browser_extract | mode? | Structured page data: text, elements, links, tables, main. | | browser_click | ref, pagekey? | Click one observed element by its ref. | | browser_type | ref, text, pagekey? | Type into one observed field. | | browser_select | ref, option, pagekey? | Select an observed dropdown option. | | browser_scroll | direction? | Scroll one viewport step up or down. | | browser_press | key | Press Enter, Escape or Tab. | | browser_wait | - | Wait a moment and observe again. | | browser_screenshot | - | JPEG of the current viewport. | | browser_close | - | Close the session held by the server. |

Every response carries elapsed_ms, and decisions plus cost whenever Jev was called.

browser_observe returns a page_key; pass it back to browser_click, browser_type or browser_select and a ref from a page that has changed since is refused as stale instead.

CLI

| command | what it does | |---|---| | run URL "goal" [--value name=text ...] [--max-steps N] [--profile NAME], run --resume RUN_ID | pursue a goal from a URL until it is done or escalates | | search "query" ["what the page must answer"] [--max-pages 3] [--profile NAME] | search the web and read the best results | | open URL [--profile NAME] | open a URL and keep the session for later commands | | observe | list the controls and text of the open page | | extract [--mode text\|elements\|links\|tables\|main] | pull structured data out of the open page | | act "instruction" [--value name=text ...] | take one decided step on the open page | | click REF | click one observed element | | type REF TEXT | type into one observed field | | select REF OPTION | select an observed dropdown option | | scroll down\|up | scroll the open page | | press Enter\|Escape\|Tab | press Enter, Escape or Tab | | wait | wait a moment and observe again | | screenshot [PATH] | save a JPEG of the viewport | | close | close the session kept by open | | clean [--dry-run] [--keep-profile] [--daemons] | stop what jev-ra started and empty its profile | | profile RUN_ID | print where a stored run's time went, step by step | | trace RUN_ID [--html PATH] | render a stored run by its run id | | mcp | run the MCP stdio server | | serve [--host ADDR] [--port N] [--quota N] | run the same tools over HTTP and SSE | | skill | print the agent guide, for saving as a skill file | | install claude\|codex [--scope user\|project\|local] | register jev-ra as an MCP server with a coding agent | | doctor [--profile NAME] | check the key, the endpoint, Chrome and one live decision | | bench [--live] | time the offline fixtures, and the live tasks with --live | | corpus run | run the real-site corpus |

open … close share one browser across invocations through a target id in $XDG_STATE_HOME/jev-ra/session.json. Add --json to any command for the raw payload.

Every run is stored under its own id in $XDG_STATE_HOME/jev-ra/runs/, newest 200 kept. jev-ra trace RUN_ID prints its step table; --html writes a single-file page - the run's own JSON inline, nothing to fetch - to send to whoever asked what the run did.

--profile NAME gives a run a Chrome user-data-dir of its own under $XDG_STATE_HOME/jev-ra/chrome-profiles/NAME, so a login done once on that profile is still there on the next run; open records the profile and the stateful commands reattach to it. The MCP tool takes the same thing as browser_open(url, profile). One process drives one browser, so a server already on a profile refuses a second one instead of answering from the wrong cookies.

serve is the same tool set over MCP's streamable HTTP transport, at /mcp, answering with server-sent events; /healthz answers without a key. Every request carries a key from JEV_RA_SERVE_KEYS as Authorization: Bearer , is charged the decisions it spends against that key's daily quota, and leaves one JSON line on stderr with the run id it also returns in the x-jev-ra-run-id header. A key is never logged: the line names it by a digest.

Python

from jev_ra import Agent

with Agent() as agent:
    result = agent.run(
        "Place the order with express shipping.",
        values={"name": "Ada Lovelace", "email": "ada@example.com"},
        url="https://example.com/checkout",
    )
print(result.status, result.elapsed_ms, [step["target_label"] for step in result.steps])

Values

TYPE_TEXT needs a string, and jev-ra will not invent one. Jev picks which of your values belongs in the field it is about to fill, in the same round trip that picks the field. If nothing fits and no text helper is configured, the run stops with needs_value and reports the field's label, role and current value. You supply the value and call again. The default install has no text model.

When it hands control back

Result.status is done, blocked, escalate or budget. When a run stops short, reason is one of needs_value, stuck_loop, unverified_done, stale, invalid_decision, too_many_controls, provider_error, blocked, blocked_by_site or needs_human. A run that ends on budget names the budget it hit (steps, decisions or time) in reason instead; provider_error is the provider refusing to answer at all, so check the key and the route rather than retrying the goal. An escalation also carries the top eight operation/target candidates with their probabilities, and up to 3,000 characters of page text — enough to decide what to do without observing again.

A goal that reads as a question — it ends in a question mark, or opens with what, which, how many, when, who or find the — also gets Result.final_answer: one sentence the configured text helper takes from the page the run finished on, whatever the run ended as. With no text helper it stays null and detail says so, and a goal that is an instruction never asks for one.

Verification is deterministic: after every action jev-ra compares url, title, text and field state, and page_changed comes from a semantic page marker, not from the model.

While the page settles after an action, jev-ra asks Jev the next question already, against the page as it should read with that input applied and nothing else changed. If the settled page offers anything the guess did not, the answer is thrown away and the question asked again. Result.speculations and Result.prefetched count how often that paid off.

A site that answers with an error page (HTTP 5xx or 429, or a short page that says so) is waited out for two seconds and reloaded once before anything is decided on it; if it still answers with an error, the run stops with blocked_by_site and detail.wall names the status ("http 502"), so a site's bad minute is never mistaken for a page to act on.

A site that asks for a person - a CAPTCHA widget, Cloudflare's "Just a moment...", a press-and-hold check - is handed to one. jev-ra backs off and asks for the page once more, as it does for an error page; if the check is still there, it brings the Chrome window to the front, raises a desktop notification naming the site (JEV_RA_NOTIFY=0 turns it off), and waits up to 120 s (JEV_RA_HUMAN_WAIT_S) for the page to stop being a check. Then the same run carries on, with the same goal, history and values and the steps it has left. The wait is reported apart as Result.human_wait_ms and spends no step and no time budget. If nobody clears it in time, the run stops with needs_human: detail names the site and the check and carries resume, the run id. Once the person has cleared it, browser_run(resume=...) or jev-ra run --resume ID carries the run on from that page instead of starting over. A headless browser, or one at a remote CDP address, has nobody to show the check to, so the run stops with needs_human at once and detail.next_step says how to rerun where a person can see it. A site that refuses outright - "Access denied", a 403 with no check, a geo block - is still blocked_by_site, with detail.kind set to refusal. jev-ra never solves a check, never hides that it is automated, and never borrows cookies from another profile.

The navigations a run starts - its first open and the one reload it may spend - are paced per host: at least 1 s apart (JEV_RA_PACE_S), and a host that answered 429 or put up a check makes the next one wait twice as long each time in a row. A run opens its address once, so an ordinary run is never held, and the machine the run is on is never paced.

Benchmarks

Five tasks, five runs each, every run verified against the page it left behind. Measured 2026-09-18 through OpenRouter, on the same machine and Chrome as the browser-use rows:

| task | median | p90 | success | decisions | cost | ratio | |---|---|---|---|---|---|---| | Wikipedia article | 2,714 ms | 3,179 ms | 5/5 | 3 | $0.00075 | 8.50× | | Google Flights search | 8,888 ms | 10,573 ms | 5/5 | 14 | $0.00317 | 7.47× | | Olive Young sort | 3,806 ms | 4,858 ms | 5/5 | 4 | $0.00204 | 3.96× | | Search with a citation | 2,416 ms | 2,571 ms | 5/5 | 4 | $0.00035 | no baseline | | Local checkout form | 2,191 ms | 2,338 ms | 5/5 | 5 | $0.00049 | no baseline |

Ratios are against browser-use 0.13.10 + gemini-3-flash flash_mode, its single recorded run of each task on the same day, machine and Chrome, also through OpenRouter: 23,058 ms, 66,414 ms and 15,071 ms respectively. Text-model calls across all 25 runs: 0. A same-harness re-run of browser-use, five runs per task that day, was slower still: 9.07×, 8.31× and 7.26×. Against the fastest of browser-use's six runs of each task (15,759 ms, 49,914 ms and 15,071 ms), our median is 5.8×, 5.6× and 3.96×; no ratio measured that day is below 3.96×. jev-ra bench --live --runs 5 reproduces this table and prints PASS/FAIL against the v0.1 bar of ≥ 3× on every task with a baseline. On 0.2.5 through the TypeSafe direct route (2026-09-23) the first three tasks took 4,681 ms, 11,603 ms and 5,675 ms; browser-use was not re-run that day, so those times are not a like-for-like ratio. Method, the browser-use rows, and how to reproduce them.

jev-ra on the left, browser-use flash_mode on the right, same task, same Chrome, real time:

A run that finishes without doing the task counts as a failure, not as a time.

Accuracy on real sites

The corpus is 83 tasks on real sites in ten families (search, e-commerce, booking, forms, docs, news, portals, auth walls, Japanese and Chinese sites), each with a spec that checks the page the run left behind. On 0.2.4, three runs each through the TypeSafe direct route on 2026-09-23: 213 / 249 = 85.5 %. On the forty tasks both tools were given, browser-use 0.13.10 flash_mode passed 29 / 40 = 72 % in one run on 2026-09-22, with a median of 19.4 s on the runs that passed; jev-ra 0.1 passed 102 / 120 = 85 % in three runs on 2026-09-18, median 3.1 s. Those two rows differ in day, run count and jev-ra version, so they are not a like-for-like comparison. A single three-run pass moves by about five tasks on site weather alone, so a change counts only when a per-task rerun agrees. Per-task rows and the noise measurement.

What it will not do

| limit | what happens | |---|---| | Canvas drawing, games, anything painted rather than marked up | blocked: no observed control can advance the goal | | File upload | blocked: a file input is never offered, and never typed into | | CAPTCHA and other checks a person can clear | handed to the person at the window; needs_human with a resume token when nobody clears it | | Bot walls that refuse outright, stealth | blocked_by_site with detail.kind refusal; jev-ra never disguises itself | | Auth flows | needs_value with the field named; jev-ra never guesses a credential | | Pop-up windows, multi-tab workflows | the run stays on its own target | | Cross-origin iframes | reported as one opaque element; open shadow roots and same-origin iframes are traversed | | More than 250 visible controls | `omit

…

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.