{"name":"net.aginx/aginxbrowser","slug":"aginxbrowser","title":"Aginx Browser","description":"Stealth web browser for agents: search, fetch, click, download and type in persistent MCP sessions.","url":"https://mcp.market/server/aginxbrowser","rating":null,"grade":"B","score":73,"certified":false,"status":"active","category":"scraping","tags":["scraping","search"],"presence":{"score":0,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/yinnho/aginxbrowser","website":"https://browser.aginx.net/","version":"0.4.5","remotes":[{"type":"streamable-http","url":"https://browser.aginx.net/mcp"}],"packages":[],"tools":[{"name":"account_delete","description":"Delete a named login identity: stored record AND live jar. Cookie values are credentials — delete means gone. Sessions currently running as the account keep their in-process jar handle, but nothing writes back. Returns {deleted: name}, or an error naming the account if it does not exist.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"description":"The account to delete: stored record AND live jar.","type":"string"}},"required":["name"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"account_list","description":"List named login identities (the multi-account layer) with metadata only: name, cookie domains, cookie count, updated_at, the last account_verify verdict, and the identity's persona User-Agent (each account is one stable device: its own UA and hardware fingerprint, drawn once and reused). Cookie values are credentials and never leave the server. Use to see which identities exist before session_create {account} picks one.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{}}},{"name":"account_verify","description":"Check whether a named account is still logged in. Teach-once: the first call passes url + predicate (a JS expression truthy on a logged-in page, e.g. !!document.querySelector('.user-nick')); the spec is remembered and later calls can be bare. Runs in a scratch session AS the account (private jar), so the probe doubles as a cookie refresh. Returns {name, logged_in, url, checked_at}.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"description":"The account to check.","type":"string"},"url":{"description":"Teach-once: the page that shows login state (its login wall if the\naccount is logged out). Remembered after the first call.","type":["string","null"],"default":null},"predicate":{"description":"Teach-once: a JS expression that is truthy when logged in, e.g.\n`!!document.querySelector('.user-nick')`. Remembered after the first\ncall — later calls can pass neither and rerun the spec.","type":["string","null"],"default":null}},"required":["name"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"cache","description":"Query the LOCAL CACHE of every page this server has fetched and every search it has run. Check here BEFORE re-fetching or re-searching — a hit is instant and free while a fresh fetch costs 5-60s. Use query for full-text search (works for Chinese substrings and English words), get to pull a page's full cached content, stats for counts, clear to delete rows.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"query":{"description":"Full-text search over cached page contents, titles, URLs and past search queries. Omit to list the latest rows.","type":["string","null"],"default":null},"url":{"description":"Only rows whose URL contains this substring","type":["string","null"],"default":null},"get":{"description":"Return the FULL cached content of this exact URL instead of listing hits","type":["string","null"],"default":null},"kind":{"description":"Which rows to search: \"auto\" (default, pages + searches), \"pages\", or \"searches\"","type":["string","null"],"default":null},"since_hours":{"description":"Only rows stored within the last N hours","type":["integer","null"],"format":"uint64","minimum":0,"default":null},"limit":{"description":"Maximum rows returned (default: 10, max 100)","type":"integer","format":"uint","minimum":0,"default":10},"stats":{"description":"Return row counts and database size instead of rows","type":"boolean","default":false},"clear":{"description":"Delete matching rows instead of returning them (requires url, since_hours, or all)","type":"boolean","default":false},"all":{"description":"With clear: delete everything cached for this caller","type":"boolean","default":false}},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"click","description":"Click an element on a one-off page: loads `url` in a fresh browser context (stateless — no cookies unless passed, no shared state with other calls), waits `wait_secs` after load before clicking, then fires a DOM click on the first CSS-selector match. The click may trigger navigation (link, form submit) — the response `url` and `text_after` are read after that navigation lands. Returns `clicked:false` when the selector matches nothing. For multi-step interaction on a shared page use session_click instead.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"description":"The URL to load","type":"string"},"selector":{"description":"CSS selector of element to click","type":"string"},"wait_secs":{"description":"Seconds to wait for the page to settle after load, before clicking","type":["integer","null"],"format":"uint64","minimum":0,"default":null}},"required":["url","selector"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"download","description":"Download a file over HTTP(S) with streaming to disk (no memory buffering), SHA-256 integrity hash, and optional resume of interrupted transfers. Filename resolution: explicit param → Content-Disposition → URL tail. Use for binaries, archives, datasets, documents - anything where the agent wants the FILE saved, not its text content read.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"description":"URL of the file to download (http/https)","type":"string"},"filename":{"description":"Explicit output filename. When omitted: Content-Disposition → URL tail → \"download\"","type":["string","null"],"default":null},"resume":{"description":"Resume an interrupted download when a local partial file exists","type":"boolean","default":false},"use_proxy":{"description":"Route through proxy (default: false; auto-enabled for known blocked domains)","type":"boolean","default":false},"cookies":{"description":"Cookies to send with the request: `\"name=value\"` strings or\nCDP-style objects `{\"name\",\"value\",\"domain\",...}` for gated downloads","type":"array","items":{"type":"string"},"default":[]}},"required":["url"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"eval","description":"Execute JavaScript on a one-off page: loads `url` in a fresh browser context, optionally waits `wait_secs` for the page to settle, evaluates `script` (async/Promise supported) and returns `{url, result}`. Script-driven navigation (location.href, form submit) is drained and reflected in the returned `url`. Stateless — no cookies or page state shared with other calls; when the script needs prior page state or a login, use session_eval.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"description":"The URL to load","type":"string"},"script":{"description":"JavaScript code to execute (supports async/Promise)","type":"string"},"wait_secs":{"description":"Seconds to wait before executing","type":["integer","null"],"format":"uint64","minimum":0,"default":null}},"required":["url","script"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"fetch","description":"Fetch a webpage and return clean markdown/html/text. Use whenever the agent needs to READ any web page - blogs, docs, articles, JS-rendered SPAs, Cloudflare-protected sites. Static pages are served over plain HTTP (~100ms tier:\"http\"); pages that need JS get the full browser (tier:\"browser\"). render_tier selects auto (default) / http (pure HTTP, refuses the upgrade) / obscura (always browser).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"description":"The URL to fetch","type":"string"},"format":{"description":"Output format: \"markdown\", \"html\", or \"text\" (default: markdown)","type":"string","default":"markdown"},"selector":{"description":"CSS selector to extract specific content","type":["string","null"],"default":null},"wait_secs":{"description":"Seconds to wait for JS rendering","type":["integer","null"],"format":"uint64","minimum":0,"default":null},"use_proxy":{"description":"Route through proxy (for blocked foreign sites)","type":"boolean","default":false},"max_chars":{"description":"Maximum characters to return (default: 50000)","type":"integer","format":"uint","minimum":0,"default":50000},"auto_bypass_challenge":{"description":"Auto-detect and bypass Cloudflare Turnstile challenges (default: true)","type":"boolean","default":true},"render_tier":{"description":"Rendering strategy: \"auto\" (default), \"http\", or \"obscura\"","$ref":"#/$defs/RenderTier","default":"auto"},"tls_fingerprint":{"description":"TLS fingerprint override (stealth mode only): \"chrome145\", \"firefox133\", etc.","type":["string","null"],"default":null},"js_extract":{"description":"JS expression to extract from the page after rendering","anyOf":[{"$ref":"#/$defs/JsExtractParams"},{"type":"null"}],"default":null},"sanitize":{"description":"Strip prompt-injection payloads from the text output (default true):\nzero-width/steganographic characters, instruction-shaped lines\n(\"ignore previous instructions\", chat markup tokens, CJK variants),\nand text hidden via opacity:0 / tiny fonts. A `sanitize_report`\nfield counts what was removed — stripping is observable, never\nsilent. Set false for raw output.","type":"boolean","default":true},"capture_xhr":{"description":"Capture script-initiated API responses: a list of URL substrings\n(e.g. [\"/api/\"]) whose matching fetch/XHR bodies come back in an\n`xhr` array; an empty list captures every XHR/Fetch. Forces browser\nrendering (script-initiated requests only exist after JS runs).","type":["array","null"],"items":{"type":"string"},"default":null}},"required":["url"],"$schema":"https://json-schema.org/draft/2020-12/schema","$defs":{"RenderTier":{"description":"Tiered rendering strategy selector.","oneOf":[{"description":"HTTP-direct first, fall back to diting browser. (default)","type":"string","const":"auto"},{"description":"Pure HTTP, no V8/JS. Fastest; misses JS-rendered content.","type":"string","const":"http"},{"description":"Always use the diting browser (current behaviour pre-tiering).\n\"browser\" is accepted as an alias — agents guess it before \"obscura\".","type":"string","const":"obscura"}]},"JsExtractParams":{"type":"object","properties":{"expression":{"description":"JavaScript expression to evaluate (e.g. \"window.__INITIAL_STATE__\")","type":"string"},"timeout_ms":{"description":"Timeout in milliseconds (default: 5000)","type":"integer","format":"uint64","minimum":0,"default":5000}},"required":["expression"]}}}},{"name":"flow_run","description":"Run a flow — a recorded, editable JSON browser-session script — deterministically, with zero model tokens. Steps are {op, args, expect?, save?}: ops cover navigate/click/click_xy/input/scroll/eval/wait/screenshot/state/cookies; {{var}} placeholders in args are filled from vars; expect asserts (url_contains | selector | text_contains | eval_truthy) abort with evidence on failure; save collects a step's output into the receipt. Source the flow inline via \"flow\", or by \"name\" from the server's workflow/<name>/flow.json (unknown name → error lists installed workflows). Pass session_id to reuse a live session (e.g. from import_curl) so login state and flows compose. The receipt carries status ok/failed, saved outputs, the session_id (kept alive), and on failure the failing step, reason and a diagnostic screenshot — fix the flow or take the session over from there.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"flow":{"description":"Inline flow document: {create?, vars?, steps:[{op, args, expect?, save?}]}","default":null},"name":{"description":"Or run a server-side workflow/<name>/flow.json asset. An unknown name\nerrors back with the list of installed workflows — that error is the\ndiscovery call.","type":["string","null"],"default":null},"vars":{"description":"Values for {{placeholders}} in step args; wins over the flow's own\nvars defaults.","default":null},"session_id":{"description":"Reuse a live session (e.g. from import_curl) instead of creating a\nfresh one — that's how login state and flows compose.","type":["string","null"],"default":null}},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"import_curl","description":"Import login state from a real browser in one paste. The human logs into a site in their own Chrome (solving the CAPTCHA/SMS once), opens DevTools → Network, right-clicks any authenticated request → \"Copy as cURL\", and passes the command here. Returns a live session_id already carrying that site's cookies and sitting on the copied request's URL — the agent continues from where the human left off, no password or second login needed. Works with bash, PowerShell and cmd copy flavors.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"curl":{"description":"A \"Copy as cURL\" command pasted from Chrome DevTools (Network panel →\nright-click any authenticated request). bash, PowerShell and cmd\nflavors all parse; the cookie set is injected and the session\nnavigates to the copied request's URL.","type":"string"},"use_proxy":{"description":"Route the session's traffic through the engine proxy.","type":"boolean","default":false},"account":{"description":"Attach the session to a named account: the imported login lands in\nthe account's private jar and is written back under its name after\nevery action — one import per identity, no clobbering.","type":["string","null"],"default":null}},"required":["curl"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"render_markdown","description":"Render a markdown document into a deterministic, self-contained HTML artifact - the document layer, so the agent never writes HTML by hand. Prose rides a plain offline shell (no fonts, no scripts); archify fenced code blocks carry typed zero-coordinate diagram JSON (sequence, workflow, architecture, dataflow, lifecycle families) and render to inline SVG via the layout engine. Same input, same bytes: the receipt carries the sha256 so determinism is verifiable. theme picks light (default) or dark; preset picks the palette family — classic (default), signal-flow, blueprint, editorial — orthogonal to theme; colors bake at generation time (presentation attributes, not CSS variables), and the receipt records both preset and theme. quality picks the composition audit profile — standard (default) or showcase, the delivery gate: the receipt's diagrams[].composition grades route crossings, ambiguous corridors, label clearance (2px standard / 4px showcase), route rhythm, and node text projected to the 930px reader width; the audit never changes the artifact bytes. Mermaid sources are the agent's job to translate, not the engine's: flowchart/graph → workflow (lanes + columns), sequenceDiagram → sequence, stateDiagram-v2 → lifecycle (bands), erDiagram/class → architecture (grid + boundaries) — read the topology and emit the matching zero-coordinate archify JSON; the engine accepts only archify JSON. A broken diagram degrades to a visible code block and lands in receipt.diagnostics; an authored route preset that cannot be honored is self-repaired to a verified semantic substitute and disclosed in receipt diagrams[].repairs - the document still renders. A fence may also carry views: [{id,label,nodes,note?}] (node ids of the active family), emitted as guided-view tabs above the diagram plus an inlined viewer script - clicking a tab lights the member nodes and the routes between them (subgraph), clicking a node lights it with its direct neighbors (ego graph), everything else dims; a view's optional note shows as a caption while it is active (the story layer). window.agxViewer in a session drives and reads the same state programmatically: {focus,view,state} as before, plus route(i,from,to) which returns and lights the shortest authored directed path between two nodes (null when unreachable, state untouched), and reach(i,id,down|up) which returns and lights the authored downstream/upstream closure ({nodes,links}); both dim the rest of the diagram. diagrams[].views in the receipt lists the tabs. motion: true bakes an entrance choreography into the artifact: pure-declarative CSS animation with zero scripts - headings split into per-glyph (CJK) / per-word (latin) spans that rise in with expo easing, prose blocks stagger up an nth-child delay ladder, diagram figures grow in with a back ease (GSAP's easing math as public cubic-bezier equivalents, nothing embedded); the diagrams themselves play a flow story on the same clock - nodes land beat by beat, solid edges draw in (dash-offset), dashed returns fade, sequence messages arrive as sent - with a timed caption strip under each figure as the subtitles, which becomes a static transcript under prefers-reduced-motion; the file itself animates in any browser and the receipt records motion plus diagrams[].story (beat times and captions - the hook for muxing voice later). With session_id the artifact is also loaded into that session (local, free) and the reply carries viewport acceptance: scroll extents measured in the live session and graded fits/tall/wide/oversized, telling the agent how to read the page back. Diagram vocabulary adapted from archify (MIT).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"markdown":{"description":"Full markdown document. Prose rides a plain offline shell; archify\nfenced code blocks carry typed zero-coordinate diagram JSON and\nrender to inline SVG.","type":"string"},"theme":{"description":"Color theme: \"light\" (default) or \"dark\" — the shell background/\nforeground and every SVG palette slot swap together; the receipt\nrecords which theme produced the bytes","type":["string","null"]},"preset":{"description":"Visual preset: \"classic\" (default), \"signal-flow\", \"blueprint\", or\n\"editorial\" — a palette family orthogonal to theme (each preset\nexists in both light and dark). The receipt records preset and\ntheme separately","type":["string","null"]},"session_id":{"description":"Optional session ID: also load the rendered HTML into that live\nsession (local and free) so session_screenshot / session_state can\nverify the artifact","type":["string","null"]},"quality":{"description":"Quality profile for the composition audit: \"standard\" (default) or\n\"showcase\" — the delivery gate. The audit grades route crossings,\ncorridors, label clearance, rhythm, and projected text size in the\nreceipt (diagrams[].composition); it never changes the artifact\nbytes, only how findings are severity-rated","type":["string","null"]},"motion":{"description":"Bake the entrance choreography into the artifact (default false):\npure-declarative CSS animation — headings split into per-glyph/per-\nword spans that rise in with expo easing, prose blocks stagger up a\nnth-child delay ladder, and diagram figures grow in with a back\nease (GSAP's easing math as public cubic-bezier equivalents). The\ndiagrams animate too, on one story clock: nodes pop in one beat at\na time, solid edges draw themselves (dash-offset drain), dashed\nreturns fade, sequence messages land as they are \"sent\", and a\ntimed caption strip under each figure subtitles the beats — under\nprefers-reduced-motion the strip becomes a static transcript.\nZero scripts: the file itself animates in any browser, subtitles\nand all; the receipt records motion (plus diagrams[].story with\nthe beat times, the hook for muxing voice later) so a cached\nartifact is never mistaken for the static one","type":["boolean","null"]}},"required":["markdown"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"render_pdf","description":"Cut a rendered page into pages and package as PDF, PNGs, PPTX or DOCX. Print mode (no selector) paginates the document into fixed-height pages (default 794x1123, A4 @96dpi), breaking at top-level block boundaries — no half-cut text where a break can land on a block edge. Slides mode (selector set) makes one page per match, sized to that element — generate an HTML deck with one .slide per page and each becomes a deck page. format \"pdf\" (default) returns base64 image-based PDF; \"png\" returns one base64 PNG per page in pages_base64; \"pptx\" returns a base64 PPTX (one slide per page, deck-sized to the largest page); \"docx\" returns a base64 DOCX (one page-sized section per page, each section keeps its own height). Returns page count and packaging.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"description":"Page URL to cut into pages.","type":"string"},"format":{"description":"Output format: \"pdf\" (default), \"png\" (one base64 PNG per page),\n\"pptx\" (one slide per page, image-based), \"pptx-native\" (editable:\nelement-level DrawingML — real text runs, gradient shapes, image\nparts; requires `selector`), or \"docx\" (one page-sized section per\npage).","type":"string","default":"pdf"},"width":{"description":"Page width in CSS pixels. Default 794 (A4 @96dpi).","type":"integer","format":"uint32","minimum":0,"default":794},"height":{"description":"Page height in CSS pixels — print pagination only. Default 1123.","type":"integer","format":"uint32","minimum":0,"default":1123},"selector":{"description":"CSS selector; present → slides mode (one page per match, sized to the\nelement). Absent → print mode (fixed-height pages at block boundaries).","type":["string","null"],"default":null},"max_pages":{"description":"Safety cap on emitted pages. Default 50.","type":"integer","format":"uint","minimum":0,"default":50},"jpeg_quality":{"description":"JPEG quality for PDF page embedding (1-100). Default 90.","type":"integer","format":"uint8","minimum":0,"maximum":255,"default":90},"use_proxy":{"description":"Route through proxy (for blocked foreign sites)","type":"boolean","default":false},"tls_fingerprint":{"description":"TLS fingerprint override (stealth mode only)","type":["string","null"],"default":null}},"required":["url"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"render_video","description":"Render a page's animation timelines to an MP4 video. The page's scripts must expose `window.__timelines` — objects with `duration()` and `pause(t)` (a paused gsap.timeline registered there works as-is). Each frame seeks every timeline to t=i/fps and paints the viewport, so the output is deterministic — no wall clock in the pixel values. Audio: `narration[]` places TTS/voice clips at start times (mixed into one AAC track), `audio` adds looped background music, and `subtitles_srt` muxes an SRT as a soft mov_text track and (by default, `burn_subtitles: false` to opt out) burns the same cues into the frame pixels — QuickTime, WeChat and most social embeds ignore the soft track. Requires ffmpeg on the server. Returns base64 MP4 (H.264, yuv420p) plus frame count and durations.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"description":"Page URL whose scripts register timelines in `window.__timelines`\n(GSAP-style objects with `duration()` + `pause(t)`).","type":"string"},"fps":{"description":"Frames per second. Default 24.","type":"number","format":"double","default":24},"width":{"description":"Viewport width in CSS pixels (floored to even — yuv420p). Default 1280.","type":"integer","format":"uint32","minimum":0,"default":1280},"height":{"description":"Viewport height in CSS pixels. Default 720.","type":"integer","format":"uint32","minimum":0,"default":720},"hold_tail_secs":{"description":"Freeze the final timeline state for this many extra seconds. Default 0.5.","type":"number","format":"double","default":0.5},"max_duration_secs":{"description":"Safety cap on timeline + hold tail, seconds. Default 120.","type":"number","format":"double","default":120},"wait_timelines_ms":{"description":"How long to wait for `window.__timelines` to appear, ms. Default 10000.","type":"integer","format":"uint64","minimum":0,"default":10000},"use_proxy":{"description":"Route through proxy (for blocked foreign sites)","type":"boolean","default":false},"tls_fingerprint":{"description":"TLS fingerprint override (stealth mode only)","type":["string","null"],"default":null},"audio":{"description":"Background music: looped to cover the video, volume-scaled, faded\nout at the tail.","anyOf":[{"$ref":"#/$defs/RenderVideoAudio"},{"type":"null"}],"default":null},"narration":{"description":"Voiceover clips, each starting at its own time (any TTS output;\nmixed into one AAC track).","type":"array","items":{"$ref":"#/$defs/RenderNarrationClip"},"default":[]},"subtitles_srt":{"description":"Inline SRT subtitles muxed as a soft (toggleable) mov_text track.","type":["string","null"],"default":null},"subtitles_language":{"description":"ISO language tag for the subtitle track, e.g. \"eng\" / \"zh\".","type":["string","null"],"default":null},"burn_subtitles":{"description":"Burn the cues into the frame pixels too (hardsub) — on by default\nwhen `subtitles_srt` is present; QuickTime, WeChat and most social\nembeds ignore the soft mov_text track. `false` keeps the soft track\nonly.","type":["boolean","null"],"default":null}},"required":["url"],"$schema":"https://json-schema.org/draft/2020-12/schema","$defs":{"RenderVideoAudio":{"description":"render_video `audio`: background music track — fetched, looped to cover\nthe video, volume-scaled, optionally faded out at the end.","type":"object","properties":{"url":{"description":"URL of the music file. mp3/wav/ogg/m4a — probed by content.","type":"string"},"volume":{"description":"Linear multiplier 0..=2; 1 = as authored. Default 1.","type":"number","format":"float","default":1},"fade_out_secs":{"description":"Fade out over the final N seconds. Default 0 (none).","type":"number","format":"float","default":0},"loop_audio":{"description":"Loop to cover the whole video. Default true.","type":"boolean","default":true}},"required":["url"]},"RenderNarrationClip":{"description":"render_video `narration[]`: one voiceover clip placed at a start time —\ngenerate with any TTS, hand us the URL; all clips mix into one AAC track.","type":"object","properties":{"url":{"description":"URL of the voice clip (any TTS output; mp3/wav/ogg/m4a).","type":"string"},"start_secs":{"description":"Seconds from video t=0 where this line starts. Default 0.","type":"number","format":"double","default":0},"volume":{"description":"Linear multiplier 0..=2. Default 1.","type":"number","format":"float","default":1}},"required":["url"]}}}},{"name":"search","description":"Search the web across Baidu/Bing/Sogou/WeChat/Google (aggregated + deduped) and optionally fetch the top results' full content. Use when the agent needs to FIND information online - replaces a search API. Supports image search returning direct image URLs. Optional engines: [\"baidu\"]-style filter by engine name (invalid names error with the valid list; /doctor lists them with live health). Optional time_range day/week/month/year for news freshness (engines without dated results ignore it). Response carries engine_errors explaining any engine that contributed nothing (CAPTCHA suspension, transient failure).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"q":{"description":"Search query","type":"string"},"fetch_top":{"description":"Fetch content for top N results","type":"integer","format":"uint","minimum":0,"default":0},"categories":{"description":"Search categories (default: general)","type":"string","default":"general"},"max_results":{"description":"Maximum number of results (default: 10)","type":"integer","format":"uint","minimum":0,"default":10},"max_chars_per":{"description":"Max characters per result content","type":"integer","format":"uint","minimum":0,"default":4000},"engines":{"description":"Restrict to these engine names (e.g. [\"baidu\"], [\"sogou_wechat\"]).\nEmpty = all engines serving `categories`. Invalid names return an\nerror listing the valid ones.","type":"array","items":{"type":"string"},"default":[]},"time_range":{"description":"Freshness window: \"day\" | \"week\" | \"month\" | \"year\". Honored by\nengines with dated results (e.g. bing_news filters by pubDate);\nothers ignore it.","type":["string","null"],"default":null}},"required":["q"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_challenges","description":"One-call risk-control report: did this session hit an anti-bot wall? Taobao/tmall's x5 risk control answers 200 like a normal response — either a redirect onto a punish page (_____tmd_____/punish, punish.taobao.com) or an MTop API body carrying FAIL_SYS_USER_VALIDATE / RGV587 / x5secdata. Returns {total, events:[{url,method,status,kind,via}]} where via says whether the wall was navigated into (\"url\") or swallowed by an API response (\"body\"). When there are hits, the response also carries the account name (which identity got walled) and a `handoff` instruction: the engine detects and surfaces but does not auto-bypass — a human opens the live view (web/live.html), solves the challenge in this session, and the retry rides the cookie that solving sets. Detection only; no automated solving or bypass.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_click","description":"Click an interactive element by its index (from session_state output) inside a live browser session: scrolls it into view and fires a DOM click on the session's current page. A submit click may navigate the session — the returned `url`/`text_after` reflect the page after the action, and session state (cookies, localStorage, globals) persists for follow-up calls. Indexes come from the most recent session_state; re-list after navigation.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"index":{"description":"Element index (from /state output)","type":"integer","format":"uint","minimum":0}},"required":["session_id","index"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_click_xy","description":"Click at viewport coordinates (CSS pixels) via real mouse events — pointerdown/mousedown, pointerup/mouseup, then click on whatever element is hit there. For canvas/map surfaces with no DOM element to index. click_count 2 adds dblclick.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"x":{"description":"Viewport X coordinate in CSS pixels","type":"number","format":"double"},"y":{"description":"Viewport Y coordinate in CSS pixels","type":"number","format":"double"},"button":{"description":"Mouse button: \"left\" (default), \"right\", \"middle\"","type":["string","null"],"default":null},"click_count":{"description":"Click count: 1 single (default), 2 adds dblclick, 3+ sets detail","type":["integer","null"],"format":"uint32","minimum":0,"default":null}},"required":["session_id","x","y"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_clone","description":"Derive a new browser session from a live one, carrying the full login state: cookies, localStorage/sessionStorage, viewport pin, dialog policy, proxy and keepalive flags. The source session stays untouched. Use to snapshot a logged-in state before risky actions, or to run the same login in parallel tabs. Returns {session_id (new), cloned_from, url, viewport}.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID to derive from (stays alive and untouched)","type":"string"}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_close","description":"Close a browser session and free its resources. For a persistent session this also drops the on-disk login snapshot - idle expiry keeps it, an explicit close does not.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_console","description":"Read the session's recent page console output (log/info/warn/error) as {url, total, matched, messages:[{ts_ms, level, text, url}]}, newest last. Ring buffer of 500 entries; captures output from page scripts, clicks, evals and navigation alike. Optional filters: level (exact, e.g. \"error\"), since_ts (epoch ms), url_contains (page URL substring), limit (most recent N matches). The fastest way to see WHY a page misbehaves: click the button, call this, read the error.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"level":{"description":"Only entries at this level: \"log\" | \"info\" | \"warn\" | \"error\"","type":["string","null"],"default":null},"since_ts":{"description":"Only entries logged at or after this Unix epoch millisecond timestamp","type":["integer","null"],"format":"uint64","minimum":0,"default":null},"url_contains":{"description":"Only entries whose page URL contains this substring","type":["string","null"],"default":null},"limit":{"description":"Keep only the most recent N matching entries","type":["integer","null"],"format":"uint","minimum":0,"default":null}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_cookies","description":"Export the session's current cookies as [\"name=value\", ...] for the page's URL. Use to persist a logged-in session and replay it later via session_create with cookies. Round-trips with session_create's cookies field.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_create","description":"Create a persistent interactive browser session for multi-step interaction - clicking, typing, scrolling, reading state across page transitions. Use when the agent must INTERACT with a page (login flows, forms, pagination, click-through) rather than read it once. Returns session_id; persists 8 min idle. With persistent:true the login state survives idle eviction and server restarts - the same session_id revives logged-in.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"description":"Initial URL to navigate to (optional)","type":["string","null"],"default":null},"use_proxy":{"description":"Route through proxy (default: false)","type":"boolean","default":false},"cookies":{"description":"Cookies to inject before navigation: `\"name=value\"` strings or\nCDP-style objects `{\"name\",\"value\",\"domain\",...}`. Lets the session\nstart already logged-in. Round-trips with session_cookies.","type":"array","items":{"type":"string"},"default":[]},"storage":{"description":"Web Storage to inject after the initial navigation lands:\n{\"local_storage\": {\"k\":\"v\"}, \"session_storage\": {\"k\":\"v\"}}. For login\nstates that live in localStorage rather than the cookie jar.\nRound-trips with session_storage."},"ttl_secs":{"description":"Idle time-to-live in seconds before the session is evicted\n(default: 480, clamped 60..3600). Raise it for long workflows.","type":["integer","null"],"format":"uint64","minimum":0},"width":{"description":"Initial viewport width in CSS pixels. Pinned for the session's life\n(survives navigation) so element rects and media queries anchor to\nthe same layout across every page of the visit.","type":["integer","null"],"format":"uint32","minimum":0},"height":{"description":"Initial viewport height in CSS pixels.","type":["integer","null"],"format":"uint32","minimum":0},"mobile":{"description":"Mobile device emulation (coarse pointer, no hover) for the initial\nviewport.","type":"boolean","default":false},"keepalive":{"description":"Exempt the session from the idle reaper: it lives until\nsession_close or server exit, so a workflow interrupted by long\nnon-browser steps keeps its login state.","type":"boolean","default":false},"persistent":{"description":"Persist the login state (cookies + localStorage/sessionStorage +\nviewport + dialog policy) to the server's local store after every\naction. If the session idles out — or the whole server restarts —\nthe next call with the same session_id revives it logged-in\n(storageState-style recovery, no re-login). Explicit session_close\ndrops the snapshot.","type":"boolean","default":false},"account":{"description":"Run as a named login identity (the multi-account layer): a private\ncookie jar seeded from the account record, write-back to the account\nstore after every action. Concurrent logins (`taobao-scraper` vs\n`taobao-publisher`) never clobber each other. The account record\nsurvives the session — a later create with the same name picks up\nthe warm jar. 1-64 chars of [a-zA-Z0-9_-].","type":["string","null"],"default":null}},"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_dialog","description":"Inspect or flip the session's dialog policy for window.alert/confirm/prompt. Dialogs never block the page: each is auto-answered (default dismiss) and logged into session_console at level \"dialog\". action \"list\" reports {policy, prompt_text, dialogs}; \"accept\" makes subsequent confirm() true and prompt() return prompt_text (or the call's default argument); \"dismiss\" restores the default.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"action":{"description":"\"list\" reports the policy and dialog history; \"accept\"/\"dismiss\" set\nthe answer applied to subsequent window.confirm/prompt calls (alert\nis always logged, never blocking).","type":"string"},"prompt_text":{"description":"With action \"accept\": text window.prompt returns once accepted\n(omitted keeps the current text).","type":["string","null"],"default":null}},"required":["session_id","action"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_drag","description":"Drag the mouse from one viewport position to another: press at `from`, `steps` interpolated mousemove events (delay_ms apart), release at `to`. Moves AMarker-style drag targets and canvas selections that only track while the pointer travels.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"from":{"description":"Where to press the mouse button down","$ref":"#/$defs/SessionXy"},"to":{"description":"Where to release it","$ref":"#/$defs/SessionXy"},"steps":{"description":"Interpolated mousemove events between from and to (default 10)","type":["integer","null"],"format":"uint32","minimum":0,"default":null},"delay_ms":{"description":"Delay between moves in ms (default 30) — gives mousemove-driven\nwidgets time to react per step","type":["integer","null"],"format":"uint64","minimum":0,"default":null}},"required":["session_id","from","to"],"$schema":"https://json-schema.org/draft/2020-12/schema","$defs":{"SessionXy":{"type":"object","properties":{"x":{"description":"X coordinate in viewport CSS pixels","type":"number","format":"double"},"y":{"description":"Y coordinate in viewport CSS pixels","type":"number","format":"double"}},"required":["x","y"]}}}},{"name":"session_eval","description":"Execute arbitrary JavaScript in a live browser session and return the result. Runs in the session's current page, so DOM mutations, globals and storage persist across calls — unlike the stateless eval tool, which loads its own throwaway page each call. Script-driven navigation moves the session's URL. JS exceptions are reported with name, line/column and stack.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"script":{"description":"JavaScript code to execute","type":"string"},"timeout_ms":{"description":"Await budget for the script's promise in ms (default 5000, clamped\n100..120000). Pass a larger budget for slow page-side work such as\nuploads through the page's own fetch; on expiry the tool errors with\nEVAL_TIMEOUT (the script may still be running) instead of returning\na null result.","type":["integer","null"],"format":"uint64","minimum":0,"default":null}},"required":["session_id","script"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_export","description":"Export a browser session's recorded action log. Format \"bash\" (default) returns a runnable curl script that replays every recorded action (navigate/click/input/scroll/eval) against a fresh session on this server — hand it to a shell or cron, zero model tokens. Format \"jsonl\" returns the raw action log, one JSON object per line. Format \"json\" returns a flow.json document — the same recording as editable ops ({op, args}) with cookies/storage stripped — that flow_run replays server-side.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"format":{"description":"Output format: \"bash\" (default) renders a runnable curl script that\nreplays every recorded action against a fresh session; \"jsonl\" returns\nthe raw action log, one JSON object per line; \"json\" returns a\nflow.json document (editable ops, cookies/storage stripped) for\nreplay via flow_run","type":["string","null"],"default":null}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_input","description":"Type text into an input/textarea element by its index (from session_state output).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"index":{"description":"Element index (from /state output)","type":"integer","format":"uint","minimum":0},"text":{"description":"Text to type into the input field","type":"string"},"events":{"description":"Event fidelity: \"full\" types one character at a time with a\nkeydown/keypress/input/keyup cycle per character, for pages whose\nlisteners key on keyboard events (e.g. keypress-Enter login forms).\nDefault fires a single input+change pair after the value is set.","type":["string","null"],"default":null}},"required":["session_id","index","text"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_list","description":"List live browser sessions with idle age and the time left before auto-eviction. Use to discover a session to reuse instead of creating a new one; sessions expire after 8 min idle.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{}}},{"name":"session_navigate","description":"Navigate a browser session to a new URL.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"url":{"description":"URL to navigate to","type":"string"}},"required":["session_id","url"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_network","description":"Read the session's network request log. filter=\"media\" extracts playback/stream URLs (m3u8/HLS, mp4, dash, flv...) actually requested by the page's player at runtime - the reliable way to get a real video link, since links embedded in page HTML are often decoys. Media elements and player iframes the engine never fetches (video/audio/source/iframe src) are merged in as candidates: via=\"network\" entries are confirmed requests, via=\"dom\" entries are candidates carrying their tag (iframes = kind \"iframe\", navigate into them to sniff). Default returns every request as compact rows (method/url/status/type/size). Navigate to the video page first, let it load, then call this.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"filter":{"description":"\"media\" extracts playback/stream links (m3u8/HLS, mp4, dash, ...) from the requests the page actually issued - the reliable way to get a real video link, since URLs embedded in page HTML are often decoys. Media elements and player iframes the engine never fetches (video/audio/source src, iframe src) are merged in as candidates: entries carry via=\"network\" (confirmed requests) or via=\"dom\" (candidates, with their tag; iframes surface as kind \"iframe\" - player pages to navigate or sniff inside, not playable URLs). Omit to list every request as compact rows.","type":["string","null"],"default":null},"include_bodies":{"description":"Add an `xhr` array of background API responses (the page's own fetch/XHR\ntraffic with retained bodies) alongside the request rows — the page's\nAPI face is often the cleanest structured read of its data.","type":["boolean","null"],"default":null},"url_contains":{"description":"Narrow the `xhr` array to URLs containing this substring.","type":["string","null"],"default":null},"body_max_chars":{"description":"Per-body character cap for the `xhr` array (default 4000).","type":["integer","null"],"format":"uint","minimum":0,"default":null}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_screenshot","description":"Screenshot the session's CURRENT DOM state (mutations from clicks/evals included) as a base64 PNG via the built-in renderer. Width/height default to the session's viewport, so session_viewport + session_screenshot shows the responsive layout. Returns {url, width, height, image_base64, format}.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"width":{"description":"Render width in CSS pixels; defaults to the session's current viewport","type":["integer","null"],"format":"uint32","minimum":0},"height":{"description":"Render height in CSS pixels; defaults to the session's current viewport","type":["integer","null"],"format":"uint32","minimum":0},"full_page":{"description":"Capture the full scrollable page instead of the viewport (default: false)","type":"boolean","default":false},"selector":{"description":"CSS selector: capture only that element's box","type":["string","null"]},"selector_all":{"description":"With selector, capture every match (default: first match only)","type":"boolean","default":false}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_scroll","description":"Scroll the page up or down by a number of viewport-heights.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"direction":{"description":"Scroll direction: \"up\" or \"down\" (default: down)","type":"string","default":"down"},"amount":{"description":"Scroll amount in viewport-heights (default: 3)","type":"integer","format":"uint32","minimum":0,"default":3}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_set_files","description":"Select files on a file input programmatically (Playwright setInputFiles semantics): builds File objects from base64 content, assigns them to input.files, then dispatches input+change so framework onChange handlers fire. Selector-addressed because file inputs are often hidden and absent from the session_state index.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"selector":{"description":"CSS selector for the file input, e.g. \"input[type=file]\". File inputs\nare often hidden, so this is selector-addressed rather than using the\n/state index.","type":"string"},"files":{"description":"Files to select","type":"array","items":{"$ref":"#/$defs/SessionFileSpecParams"}}},"required":["session_id","selector","files"],"$schema":"https://json-schema.org/draft/2020-12/schema","$defs":{"SessionFileSpecParams":{"type":"object","properties":{"name":{"description":"File name the page sees (and what multipart uploads as filename)","type":"string"},"content_base64":{"description":"File content, standard base64 (padding allowed)","type":"string"},"mime_type":{"description":"MIME type (default \"application/octet-stream\")","type":["string","null"],"default":null},"last_modified":{"description":"Last-modified time in ms since epoch (default: now)","type":["number","null"],"format":"double","default":null}},"required":["name","content_base64"]}}}},{"name":"session_state","description":"Get the current page state as an indexed list of interactive elements. Returns compact text with [N] indexes for use with click/input tools.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_storage","description":"Snapshot the session's localStorage/sessionStorage for the current origin: {url, local_storage, session_storage}. Feed it back via session_create's `storage` field to restore a logged-in state in a new session — the half of login state that cookies can't carry (many sites keep the session token in localStorage). Call before the session idles out.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_viewport","description":"Set the session's viewport (device emulation): scripts see innerWidth/innerHeight move, media queries like (max-width: 600px) re-evaluate, element rects re-anchor, and mobile=true flips pointer/hover matchMedia answers to coarse/none. Omitted width/height keeps the current value.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"width":{"description":"Viewport width in CSS pixels; omit to keep the current width","type":["integer","null"],"format":"uint32","minimum":0},"height":{"description":"Viewport height in CSS pixels; omit to keep the current height","type":["integer","null"],"format":"uint32","minimum":0},"mobile":{"description":"Mobile emulation: matchMedia answers pointer:coarse / hover:none and\nnavigator.maxTouchPoints reports 5 (default: false)","type":"boolean","default":false}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}},{"name":"session_wait","description":"Wait until a CSS selector matches or a JS predicate turns truthy, with a timeout. The page's event loop keeps running while waiting (fetches, timers, promise chains progress), so this replaces blind sleeps for async content: navigate, session_wait for '.price-card', then click/read. Returns {matched, elapsed_ms, detail:{tag,text} or the predicate value}; errors with `timeout ...` naming the selector/predicate on expiry. Exactly one of selector/predicate.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"session_id":{"description":"Session ID","type":"string"},"selector":{"description":"CSS selector to wait for (e.g. \".price-card\")","type":["string","null"]},"predicate":{"description":"JS expression polled until truthy (e.g. \"document.querySelectorAll('.card').length >= 3\")","type":["string","null"]},"timeout_ms":{"description":"Give up after this many milliseconds (default: 10000, max: 120000)","type":"integer","format":"uint64","minimum":0,"default":10000}},"required":["session_id"],"$schema":"https://json-schema.org/draft/2020-12/schema"}}],"scan":{"score":73,"grade":"B","scanned_at":"2026-09-18T04:50:42.774Z","report":{"scannerVersion":"0.1.2","scannedAt":"2026-09-18T04:50:42.697Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":17,"max":20,"notes":["remote reachable in 4311ms"]},"poisoning":{"score":13,"max":15,"notes":["37 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 6 write-action tools with no auth"]},"maintenance":{"score":15,"max":15,"notes":["last push 0 days ago"]},"identity":{"score":7,"max":10,"notes":["namespace and repository owner differ","GitHub account older than a year","website matches verified namespace"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"poison.long-description","severity":"low","component":"poisoning","title":"Unusually long tool description (over 2,000 characters)","evidence":"tool render_markdown: …Render a markdown document into a deterministic, self-contained HTML artifact - the document layer, so the agent never writes HTML by hand. Prose rides a plain offline shell (no fonts, no scripts); archify fenced code blocks carry typed zero-coordinate diagram JSON (sequence, workflow, architecture, dataflow, lifecycle families) and render to inline SVG via the layout engine. Same input, same bytes: the receipt carries the sha256 so determinism is verifiable. theme picks light (default) or dark; preset picks the palette family — classic (default), signal-flow, blueprint, editorial — orthogonal to theme; colors bake at generation time (presentation attributes, not CSS variables), and the receipt records both preset and theme. quality picks the composition audit profile — standard (default) or showcase, the delivery gate: the receipt's diagrams[].composition grades route crossings, ambiguous corridors, label clearance (2px standard / 4px showcase), route rhythm, and node text projected to the 930px reader width; the audit never changes the artifact bytes. Mermaid sources are the agent's job to translate, not the engine's: flowchart/graph → workflow (lanes + columns), sequenceDiagram → sequence, stateDiagram-v2 → lifecycle (bands), erDiagram/class → architecture (grid + boundaries) — read the topology and emit the matching zero-coordinate archify JSON; the engine accepts only archify JSON. A broken diagram degrades to a visible code block and lands in receipt.diagnostics; an authored route preset that cannot be honored is self-repaired to a verified semantic substitute and disclosed in receipt diagrams[].repairs - the document still renders. A fence may also carry views: [{id,label,nodes,note?}] (node ids of the active family), emitted as guided-view tabs above the diagram plus an inlined viewer script - clicking a tab lights the member nodes and the routes between them (subgraph), clicking a node lights it with its direct neighbors (ego graph), everything else dims; a view's optional note shows as a caption while it is active (the story layer). window.agxViewer in a session drives and reads the same state programmatically: {focus,view,state} as before, plus route(i,from,to) which returns and lights the shortest authored directed path between two nodes (null when unreachable, state untouched), and reach(i,id,down|up) which returns and lights the authored downstream/upstream closure ({nodes,links}); both dim the rest of the diagram. diagrams[].views in the receipt lists the tabs. motion: true bakes an entrance choreography into the artifact: pure-declarative CSS animation with zero scripts - headings split into per-glyph (CJK) / per-word (latin) spans that rise in with expo easing, prose blocks stagger up an nth-child delay ladder, diagram figures grow in with a back ease (GSAP's easing math as public cubic-bezier equivalents, nothing embedded); the diagrams themselves play a flow story on the same clock - nodes land beat by beat, solid edges draw in (dash-offset), dashed returns fade, sequence messages arrive as sent - with a timed caption strip under each figure as the subtitles, which becomes a static transcript under prefers-reduced-motion; the file itself animates in any browser and the receipt records motion plus diagrams[].story (beat times and captions - the hook for muxing voice later). With session_id the artifact is also loaded into that session (local, free) and the reply carries viewport acceptance: scroll extents measured in the live session and graded fits/tall/wide/oversized, telling the agent how to read the page back. Diagram vocabulary adapted from archify (MIT).…"}],"inputs":{"probes":[{"url":"https://browser.aginx.net/mcp","reachable":true,"authRequired":false,"latencyMs":4311,"serverInfo":{"name":"aginxbrowser","version":"0.4.5"}}],"packages":[],"repo":{"found":true,"owner":"yinnho","repo":"aginxbrowser","archived":false,"pushedAt":"2026-09-18T04:02:51Z","stars":28,"openIssues":1,"ownerType":"User","ownerCreatedAt":"2024-03-13T06:16:21Z","license":"Apache-2.0"}}}},"grade_history":[],"reviews":[]}