Skip to main content
Glama

browserless_agent

Destructive

Automate any site with a persistent browser agent: scrape pages, fill forms, click elements, bypass captchas, and use stealth mode to avoid detection. No repeated setup between tasks.

Instructions

READ CAREFULLY: Execute browser commands in persistent agent session.

Core Loop (ReAct: Reason → Act → Observe)

  1. Plan + check for a site recipe — restate the goal, decide the target host, then browserless_skill { site: "<host>" } (see above). Load and follow any matching recipe before writing your own plan. Never jump straight to goto.

  2. goto — waits "domcontentloaded"

  3. snapshot — returns interactive + informational elements (button, link, textbox, combobox, checkbox, heading, img+alt) with ref= selectors

  4. Plan all actions from snapshot

  5. Batch execute

  6. Re-snapshot only if page changed

  7. Repeat → close when done

Ending the session (REQUIRED)

An open session holds one of the account's concurrent browsers until it idles out — leaving it open is not free, and stacking them starves the next task.

  • Task complete? Close it. Send { "method": "close" } as its own call, as the last thing you do. This is the default for one-shot work (a lookup, a scrape, a form submit): close without asking.

  • Ask instead of guessing only when follow-up in the SAME browser is genuinely likely (the user said "then...", you're mid-flow on a logged-in site, or the result invites a next step). Say the browser is still open, ask whether to close it, and close it as soon as they're done.

  • Never end your reply with a live session and no mention of it. Either it's closed, or you told the user it's open and why.

Site recipes (site-specific, NOT auto-injected) — CHECK FIRST

Many specific sites (marketplaces, gov portals, travel, real-estate, etc.) have a tuned recipe for a given task — proven selectors, API shortcuts, proxy needs, and known gotchas that a from-scratch plan will miss. These are not auto-injected; you must ask for them, and a recipe overrides any plan you'd build yourself (including "just use a prefiltered URL + evaluate"). This is step 0 of every task — do it before your first goto. The moment you know the target host (the user named the site, or you resolved which site to use), call browserless_skill { site: "<host>" } — e.g. { site: "airbnb.com" }. If it lists a recipe matching your task, load it with browserless_skill { id: "<host>/<slug>" } and follow it. Only when there's no match do you plan the steps yourself. Skipping this check on a supported site is a mistake — it's one cheap call. Report the outcome (only if you loaded a site recipe). As your final command in the run, send { method: "reportSkillOutcome", params: { domain: "<host>", task: "<slug>", success: <bool> } } inside commands — where domain/task are the loaded recipe's <host>/<slug> and success is whether the recipe actually got you the result. This refines shared recipes and retires ones that stop working. Send it once, and only when you loaded a recipe — never for a self-planned run. Send it as your last command before any close (close ends the run and anything after it is dropped).

Proxy (optional)

Proxy config is a top-level tool argument (proxy, proxyCountry, etc. on the tool call itself) — it is applied when the session is opened. NEVER call proxy as a method inside commands — a { method: "proxy", ... } JSON-RPC mutation does NOT change the upstream proxy on an already-open session and will silently no-op.

If there is credible evidence the task needs a proxy, you MUST pass proxy options on the very FIRST call (before any goto/snapshot), because the config is read once at session creation. Credible signals include: the user asks for a specific country/region/locale; the target site is known to geo-restrict or block datacenter IPs (streaming, ticketing, retail, banking, real-estate, news paywalls); a prior attempt returned 403/451/captcha/"unusual traffic"/"access denied"; the user explicitly mentions residential / sticky IP / proxy.

If you already opened a session without a proxy and now realize one is needed, you must close and start a new session with the proxy options set — there is no in-session switch.

  • proxy: "residential" — enable routing; proxyCountry: "us" — geo (ISO-2); proxyState / proxyCity (paid plans, 401 otherwise); proxySticky: true — stable IP; proxyLocaleMatch: true — match locale; proxyPreset — named config; externalProxyServer: "http://u:p@host:port" — bring your own (http(s) only)

  • Geo/preset/sticky require proxy: "residential" or externalProxyServer set

Auth

Never log in by default. Never invent or assume credentials exist (no "test credentials", no "your account"). If the snapshot contains a sign-in link OR you're about to mention "sign in" / "log in" / "auth required" — even as a suggested option to the user — call browserless_skill { id: "autonomous-login" } first, then follow its gates. The skill decides whether login is appropriate and whether credentials are in scope; do not skip it just because no password field is on the page yet.

After a loadSecret login, screenshot, PDF, liveURL, and page-content reads (evaluate/html/text) stay blocked until the credential is cleared. A full-page (main-frame) navigation clears it automatically; a single-page app that logs in without one — or only changes route client-side — does not. Once the credential is no longer on screen, send { method: "clearSecrets" } before the first capture. A CaptureBlockedError after login means this step was skipped.

Terminal-Goal Check

Before declaring done, restate the user's terminal deliverable in one line and verify your evidence directly supports it — not a sibling question. Empty-state substitution. An empty/zero/null result from a resource that normally requires auth, scope, or filter context is evidence the precondition wasn't met — not evidence the question is answered. Empty cart while logged out, zero results while geo-restricted, empty inbox while unauthenticated: precondition failure → fix the precondition (often: load autonomous-login), don't return the empty result as the answer. Multi-step preconditions. When the task names multiple steps ("go to X, then Y, report Z"), evaluate preconditions for the full chain before treating any step as optional. A blocker on step N blocks the whole task even if step 1 returned data.

Skills (auto-injected)

SKILL blocks auto-inject between --- SKILL: <id> --- markers when page/error needs special handling. Read carefully. Load manually via browserless_skill if suspected but not injected:

  • autonomous-login — gates, credential rules, MFA/captcha, final JSON shape (see ## Auth above for when to load)

  • shadow-dom — deep selectors, iframe targeting

  • cookie-consent — vendor-specific dismiss recipes

  • modals — closing dialogs and alertdialogs

  • captchas — the solve command (Cloud only)

  • snapshot-misses — truncated/empty snapshots, image-rendered content

  • dynamic-content — choosing the right wait* method

  • screenshots — when to screenshot vs. snapshot, scope and format choices

  • vision-fallback — click by coordinate when the snapshot can't surface an element

  • tabs — multi-tab workflows, peek-without-switching

Snapshot Rules

  • Until you snapshot a page, you CANNOT click/type/interact — snapshot first, no exceptions

  • NEVER guess, assume, or infer selectors — CSS selectors from your training data are wrong. ONLY use ref= / deep-ref= from latest snapshot

  • Snapshot STALE after: click, goto, select, navigation

  • Snapshot VALID after: type, hover, scroll, evaluate

  • Expect new content? → re-snapshot

  • Element roles in snapshot (link, button, textbox, combobox, checkbox, heading) tell you what each does

  • Snapshot lines may include desc="...", action=METHOD URL, autocomplete=..., and intent markers (⚠ destructive, ⚠ sign-out, sign-in, reset)

  • Before activating or navigating to a control marked ⚠ destructive or ⚠ sign-out, confirm that the action is actually intended; an unlabeled destructive control is a common trap

  • Snapshots after the first return a diff vs. your previous snapshot: only + new / ~ changed / - removed elements, plus a count of unchanged ones omitted. Unchanged elements stay valid — keep using their refs from the earlier snapshot. If that earlier snapshot is no longer in your context (summarized/trimmed away), request snapshot { full: true } to get the complete element list again.

Selectors

  • Use ref= (CSS) or deep-ref= (starts < ) exactly as shown in snapshot

  • Example: [3] button "Sign In" ref=button#submit"button#submit"

  • deep-ref for shadow DOM / iframes — see shadow-dom skill

Iframes

Snapshots include a Frames list (cross-origin iframes) when present. Elements inside a frame are tagged [frame#N] and carry a deep-ref=< *url* css selector that already pierces the frame — pass it as-is to click/type/hover/checkbox. No frame switching needed. captcha/payment widgets (reCAPTCHA, hCaptcha, Stripe, Turnstile) show up here. shadow-dom skill auto-loads when frames present.

Tabs

Snapshots include tabs + activeTargetId — no getTabs needed. Multi-tab / snapshot { targetId } in tabs skill (auto-loads when >1 tab).

Prefer goto over click for links with href — immune to layout shifts, overlays, misclicks. Example: [5] a "About" ref=a[href='/about']goto { url: "https://ex.com/about" } Only click when href is javascript: / # / missing.

Content Extraction

  1. Check in-memory snapshot (text/values already there)

  2. text { selector } — from specific element

  3. evaluate { content } — JS (IIFE): (() => { return ... })()

  4. html { selector } — raw HTML

Files (upload / download)

To download a file, DRIVE THE BROWSER — do not curl/wget/fetch the file yourself as a first move. Many real downloads (login/cookie-gated, generated server-side on demand, or triggered by a click whose response headers force the download) have NO fetchable URL — a direct fetch silently gets the wrong bytes, an HTML error page, or 403. Click/goto in the agent and collect from the auto-surfaced ledger. The ONLY time a direct fetch is correct: the ledger hands you a URL to use — the single-use /download/<id> URL, or an over-cap sourceUrl. Reaching for curl first is a bug, not a shortcut. NEVER read a file's bytes or base64 into this conversation, and NEVER split/reassemble/inline base64 by hand. That is the wrong tool and will stall.

  • Upload a local file (stdio): uploadFile { selector, files: [{ path }] } — the server reads + encodes it.

  • Upload a local file (HTTP): the server can't read your disk. Stage it once over HTTP, then use the handle: curl -s -F file=@"/path/to/file" "<MCP_BASE_URL>/upload?token=<TOKEN>" → returns { "handle": "browserless-download://…" }uploadFile { files: [{ handle }] }. (The path-rejection error gives you the exact command with your token + URL filled in.)

  • Re-upload something from getDownloads: pass its handle (works in both modes).

  • Download: just trigger it in the agent (click a download link, or goto the file URL). The captured file auto-surfaces as a notification on the agent response (filename/size/handle), never the bytes — the server waits for it to finish (bounded by size), so it usually lands on that same call. stdio: file already saved, you get its path. HTTP: a single-use curl … /download/<id>?token= URL — fetch only if you need it. Files over the cap aren't transferred — you get the source URL to fetch directly. Path/handle reuses in uploadFile. (No separate download tool — use the agent.)

  • base64 content is a LAST RESORT — tiny inline data only.

  • Full recipe: file-transfers skill.

Batching — Maximize Per Call

Plan ALL actions from snapshot before next snapshot.

Process:

  1. Classify actions: safe (type, hover, scroll, evaluate, select, checkbox) vs. page-changing (click, goto)

  2. Batch: safe FIRST → page-changing LAST

  3. For forms: if submit button is in snapshot, batch type + click in one call

  4. Don't batch across navigations

Example form:

{ "commands": [
  { "method": "type", "params": { "selector": "input#email", "text": "j@d.com" } },
  { "method": "click", "params": { "selector": "button#submit" } }
] }

Async

After async triggers (search, submit), use wait* before snapshot — waitForResponse best when API URL known. dynamic-content skill auto-loads on timeout. Never evaluate with setTimeout.

Error Recovery

Errors tagged Category: <NAME>:

  • SELECTOR_MISS — re-snapshot; retry < selector if not already deep-ref

  • SESSION_LOST — a fresh session was opened automatically; re-goto + snapshot (prior state gone)

  • UNAUTHORIZED / FORBIDDEN — pick different path

  • NOT_FOUND — different URL

  • SERVER_ERROR — backoff, retry once

  • NAVIGATION_FAILED — verify URL

  • TIMEOUT — longer wait or different signal

  • INVALID_PARAMS — fix params (schema authoritative)

  • UNKNOWN_METHOD — no such method; pick one from the schema

  • SCRIPT_ERROR — your evaluate script threw; page still alive, fix the script

  • UNKNOWN — re-snapshot + re-plan

! NOTICE: URL changed cross-origin = prior plan/refs invalid, re-plan. Never retry same failed action without re-snapshot.

Methods (non-obvious)

  • goto { url, waitUntil? } — default "domcontentloaded"; prefer over click for links

  • snapshot { maxElements?, targetId? } — cap 500; targetId peeks non-active tab

  • evaluate { content } — IIFE only

  • waitForSelector { selector, timeout? } — set 5000-10000ms

  • waitForResponse { url?, statuses?, timeout? } — url is glob "*api/results*"

  • createTab { url?, activate?, waitUntil? } — default activate: true; false = background

  • close — own call, NOT batched; only when task complete (premature close discards page state)

  • See schema for: screenshot, solve, back, forward, reload, click, type, select, checkbox, hover, scroll, text, html, waitForNavigation, waitForTimeout, waitForRequest, liveURL, getTabs, switchTab, closeTab

Runtime: LOCAL (stdio)

Before any file transfer, know your mode: this server runs over stdio, on the same machine as your files. To UPLOAD a local file, pass its path straight to uploadFile (files: [{ path: "/abs/file" }]) — the server reads it. Do NOT base64 the file or read its bytes into the conversation. DOWNLOADS are saved to local disk; the agent response gives you the path.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
osNoDesktop OS to spoof for the stealth fingerprint (navigator.platform, UA, UA-CH client hints, GPU/font signals). Defaults to "windows" so the agent presents a coherent, low-risk desktop identity instead of its native Linux (a Chrome-masked UA over "Linux x86_64" is a bot tell that anti-bot checks flag). Forwarded to the browser as ?emulationOs; read once at session creation.
proxyNoResidential / external proxy config. Read once at session creation. Changing requires close() + a new session call.
methodNoThe BQL method to execute (used for single-command calls). When using "commands" array, this field is ignored.
paramsNoParameters for the method (used for single-command calls).
recordNoArm screen-video recording at session launch. Use `startRecording` / `stopRecording`; stopping returns a single-use WebM link, never bytes.
_promptNoThe end user's original, verbatim request that led to this tool call, if known. Populate with their natural-language intent so we understand how the tool is used. Do NOT include secrets, passwords, API keys, tokens, or other credentials. Omit if unavailable.
profileNoOptional name of an authentication profile to hydrate into the browser when the agent session connects. The profile's cookies, localStorage, and IndexedDB are restored into the session before the request runs. The profile must already exist for the API token in use — create one with Browserless.saveProfile in a live agent session first. `profile` binds each call to its hydrated session — you MUST pass it on every call in a multi-call flow, not just the first. A call that omits `profile` runs in the default, un-hydrated session and will look logged out; if that happens, re-issue the call WITH `profile` before concluding the session expired. A different `profile` value opens a separate session.
commandsNoOptional: batch multiple commands in one call. When provided, "method" and "params" are ignored and commands are executed sequentially. Only the final result is returned. Use this to batch actions that share the same page state (e.g. filling a form: type email + type password + click submit). Do NOT batch across navigations.
humanlikeNoHuman-like cursor movement + pacing for clicks/scrolls. Improves the passive score of invisible anti-bot challenges (which weight real mouse/interaction signals). Defaults on. Forwarded as ?humanlike; read once at session creation.
rationaleNoA short user-facing reason for this call. HARD BUDGET: 50 characters. Surfaced live in interactive UIs as the progress label. Write it for a human watching, in present-continuous form ("Logging in", "Filling the search form", "Checking the time", "Closing the cookie banner"). If your first draft is longer than 50 chars, REWORD IT to fit — compress to the essence; do NOT just chop. Bad: "Read page title and body text to determine why snapshot is empty" (64). Good: "Diagnosing empty snapshot" (24). Bad: "Filling out a very detailed multi-field signup form" (51). Good: "Filling the signup form" (23). Never use jargon, raw method names ("evaluate", "click"), JS, full URLs, or credentials. Include exactly one per `browserless_agent` call, even when batching commands.
sessionIdNoThe `sessionId` returned by your previous browserless_agent call in this conversation. Echo it back on EVERY subsequent call — it binds this conversation to its live browser and its page state (current URL, cookies, filled forms, open tabs). Omit it only on the first call; omitting it later abandons the current browser and starts a blank one, losing everything the session had done. Only ever pass a value the server returned — never invent one.
createProfileNoOpen this session in profile-creation mode. The MCP tool POSTs /profile with these params, attaches the agent WS to the returned creation session (non-headless, 10-minute keepalive), and expects a saveProfile call before close. Mutually exclusive with `profile`. Load the `auth-profile` skill (via browserless_skill) for the full create-then-save recipe.
integrationIdNoOptional 1Password integration id (e.g. "op_int_…") to bind to the agent session so `loadSecret` can resolve `op://vault/item/field` references. Find it via GET /integrations/onepassword. Bind it on EVERY call in a multi-call flow (like `profile`); a call that omits it runs with no vault bound and `loadSecret` returns CredentialNotResolved. Pair with `allowedDomains` to permit filling on the target sites.
allowedDomainsNoOrigins where a resolved secret may be filled, e.g. ["https://gymshark.com"]. Only meaningful with `integrationId`. Defaults to the integration's configured origins; set it to fill on additional sites. loadSecret is refused on any origin not covered here.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed4 schema fields changedv1.27.0
    • changedInput schema / properties / commands / items / anyOf
      Previous value: -[
      -  {
      -    "oneOf": [
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "goto",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "timeout": {
      -                "description": "Navigation timeout in milliseconds",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "The URL to navigate to",
      -                "type": "string"
      -              },
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"domcontentloaded\". Avoid networkidle0/networkidle2 unless explicitly needed — they hang on SPAs and dynamic sites.",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "url"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "back",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "forward",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "reload",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "snapshot",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "full": {
      -                "description": "Force a complete snapshot instead of a diff. Snapshots normally return only what changed since your previous one; set full:true when you no longer have that previous snapshot in context (e.g. it was summarized away) and need the entire element list again.",
      -                "type": "boolean"
      -              },
      -              "maxElements": {
      -                "description": "Maximum number of elements to return (default 500)",
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "targetId": {
      -                "description": "Optional tab targetId to peek at without switching the active tab. Obtain via getTabs or a prior snapshot response. Omit to snapshot the active tab.",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "getTabs",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "switchTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "targetId": {
      -                "description": "The targetId of the tab to make active (from getTabs).",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "targetId"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "createTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "activate": {
      -                "description": "If true (default), switch to the new tab. If false, open it in the background and leave the current tab active.",
      -                "type": "boolean"
      -              },
      -              "url": {
      -                "description": "URL to open in the new tab. Defaults to about:blank if omitted.",
      -                "type": "string"
      -              },
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Only applies when activate is true. Defaults to \"domcontentloaded\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "closeTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "targetId": {
      -                "description": "The targetId of the tab to close.",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "targetId"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "click",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the element to click",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "type",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the input element",
      -                "type": "string"
      -              },
      -              "text": {
      -                "description": "Text to type into the element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "text"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "loadSecret",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "ref": {
      -                "description": "The credential reference/alias to inject (e.g. an op:// reference). The secret value is resolved server-side and typed into the field — you never see it. Use this for ALL passwords and usernames from a secrets vault; never put a secret value in `type`. Also accepts a mail://<item>/otp reference that resolves the newest emailed one-time code server-side (value never surfaced); trigger the send, then call loadSecret promptly.",
      -                "type": "string"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the input to fill. If omitted, the secret is injected into the currently focused element (click/focus the field first).",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "ref"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "select",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the select element",
      -                "type": "string"
      -              },
      -              "value": {
      -                "description": "Option value to select. The snapshot lists a select's accepted values as options=[label=value, …] (bare entries have label === value) — take the value from there instead of guessing or reading the DOM with evaluate.",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "value"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "checkbox",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "checked": {
      -                "description": "Desired checked state (default: toggle)",
      -                "type": "boolean"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the checkbox element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "hover",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the element to hover over",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "scroll",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "direction": {
      -                "description": "Scroll direction. Defaults to \"down\".",
      -                "enum": [
      -                  "up",
      -                  "down",
      -                  "left",
      -                  "right"
      -                ],
      -                "type": "string"
      -              },
      -              "selector": {
      -                "description": "CSS selector of element to scroll (omit for page scroll)",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "evaluate",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "content": {
      -                "description": "JavaScript code to execute (use IIFE syntax)",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "content"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "text",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to extract text from",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "html",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to get HTML from",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForSelector",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to wait for",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (recommend 5000-10000)",
      -                "type": "number"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForNavigation",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForTimeout",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "time": {
      -                "description": "Time to wait in milliseconds (e.g., 3000 for 3 seconds)",
      -                "type": "number"
      -              }
      -            },
      -            "required": [
      -              "time"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForRequest",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "method": {
      -                "description": "HTTP method to match (e.g., \"GET\", \"POST\")",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForResponse",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "statuses": {
      -                "description": "HTTP status codes to match (e.g., [200, 201])",
      -                "items": {
      -                  "type": "number"
      -                },
      -                "type": "array"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "liveURL",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "interactable": {
      -                "description": "Allow interaction via the live URL",
      -                "type": "boolean"
      -              },
      -              "quality": {
      -                "description": "Image quality (1-100)",
      -                "maximum": 100,
      -                "minimum": 1,
      -                "type": "integer"
      -              },
      -              "resizable": {
      -                "description": "Allow resizing the browser viewport",
      -                "type": "boolean"
      -              },
      -              "timeout": {
      -                "description": "How long the live URL stays active (ms)",
      -                "type": "number"
      -              },
      -              "type": {
      -                "description": "Image format for the stream",
      -                "enum": [
      -                  "jpeg",
      -                  "png"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "solve",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "timeout": {
      -                "description": "How long to wait for the captcha to appear (ms). Default 30000. Does not bound the solver itself once a captcha is found.",
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "type": {
      -                "description": "Captcha type to solve. Omit to auto-detect.",
      -                "enum": [
      -                  "cloudflare",
      -                  "hcaptcha",
      -                  "recaptcha",
      -                  "recaptchaV3",
      -                  "geetest",
      -                  "normal",
      -                  "friendlyCaptcha",
      -                  "capy",
      -                  "textCaptcha",
      -                  "amazonWaf",
      -                  "dataDome",
      -                  "akamai",
      -                  "lemin",
      -                  "mtcaptcha",
      -                  "slider"
      -                ],
      -                "type": "string"
      -              },
      -              "wait": {
      -                "description": "Wait for the captcha to appear before solving (default true). Set false if you have already verified the widget is on screen.",
      -                "type": "boolean"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "screenshot",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "clip": {
      -                "description": "Region of the page to capture. Mutually exclusive with selector/fullPage.",
      -                "properties": {
      -                  "height": {
      -                    "description": "Height of the clip, in CSS pixels (>0)",
      -                    "minimum": 1,
      -                    "type": "number"
      -                  },
      -                  "scale": {
      -                    "description": "Scale factor of the clip (default 1, >0)",
      -                    "exclusiveMinimum": 0,
      -                    "type": "number"
      -                  },
      -                  "width": {
      -                    "description": "Width of the clip, in CSS pixels (>0)",
      -                    "minimum": 1,
      -                    "type": "number"
      -                  },
      -                  "x": {
      -                    "description": "X coordinate of the top-left corner, in CSS pixels",
      -                    "type": "number"
      -                  },
      -                  "y": {
      -                    "description": "Y coordinate of the top-left corner, in CSS pixels",
      -                    "type": "number"
      -                  }
      -                },
      -                "required": [
      -                  "x",
      -                  "y",
      -                  "width",
      -                  "height"
      -                ],
      -                "type": "object"
      -              },
      -              "fullPage": {
      -                "description": "Capture the entire scrollable page (default false)",
      -                "type": "boolean"
      -              },
      -              "omitBackground": {
      -                "description": "Hide default white background for transparent screenshots",
      -                "type": "boolean"
      -              },
      -              "quality": {
      -                "description": "Image quality 0-100. Applies to jpeg/webp only.",
      -                "maximum": 100,
      -                "minimum": 0,
      -                "type": "number"
      -              },
      -              "selector": {
      -                "description": "CSS selector of an element to screenshot. Mutually exclusive with fullPage/clip.",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "toDisk": {
      -                "description": "Save the screenshot to disk instead of returning it inline. You will NOT see the image; the response gives a reusable handle (local path in stdio, single-use GET URL over HTTP) exactly like a download — reuse it with uploadFile or hand it to the user. Use when you only need the file later, not to look at now (see file-transfers).",
      -                "type": "boolean"
      -              },
      -              "type": {
      -                "description": "Image format. Default \"png\". Use \"jpeg\" for smaller payloads on large pages.",
      -                "enum": [
      -                  "jpeg",
      -                  "png",
      -                  "webp"
      -                ],
      -                "type": "string"
      -              },
      -              "waitForImages": {
      -                "description": "Wait for all images on the page to load before capturing",
      -                "type": "boolean"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "uploadFile",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "files": {
      -                "description": "Files to attach. Combined decoded size is capped (server default 10MB, hard max 50MB).",
      -                "items": {
      -                  "properties": {
      -                    "content": {
      -                      "description": "Base64-encoded file content. LAST RESORT — only for tiny data you already hold inline. Do NOT read a file into the conversation, and never split/reassemble base64 by hand: use `path` (stdio) or `handle` so the server moves the bytes.",
      -                      "type": "string"
      -                    },
      -                    "handle": {
      -                      "description": "A download handle from a prior getDownloads (a path in stdio mode, a `browserless-download://` URI in HTTP mode). The MCP server reads the stored file — works in both transports and keeps the bytes out of the conversation. Use this to re-upload a file you just downloaded.",
      -                      "type": "string"
      -                    },
      -                    "mimeType": {
      -                      "description": "MIME type; inferred from the extension when omitted.",
      -                      "type": "string"
      -                    },
      -                    "name": {
      -                      "description": "Filename reported to the page. Defaults to the basename of `path`, else \"file\".",
      -                      "type": "string"
      -                    },
      -                    "path": {
      -                      "description": "Local filesystem path to read and upload. stdio (local) mode only — the MCP server reads and base64-encodes it. In HTTP mode use `handle` or `content` instead.",
      -                      "type": "string"
      -                    }
      -                  },
      -                  "type": "object"
      -                },
      -                "minItems": 1,
      -                "type": "array"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the <input type=\"file\"> element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "files"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "getDownloads",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "close",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      }
      -    ]
      -  },
      -  {
      -    "properties": {
      -      "method": {
      -        "description": "The BQL method name",
      -        "type": "string"
      -      },
      -      "params": {
      -        "additionalProperties": {},
      -        "default": {},
      -        "description": "Parameters for the method",
      -        "propertyNames": {
      -          "type": "string"
      -        },
      -        "type": "object"
      -      }
      -    },
      -    "required": [
      -      "method"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "oneOf": [
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "goto",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "timeout": {
      +                "description": "Navigation timeout in milliseconds",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "The URL to navigate to",
      +                "type": "string"
      +              },
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"domcontentloaded\". Avoid networkidle0/networkidle2 unless explicitly needed — they hang on SPAs and dynamic sites.",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "url"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "back",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "forward",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "reload",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "snapshot",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "full": {
      +                "description": "Force a complete snapshot instead of a diff. Snapshots normally return only what changed since your previous one; set full:true when you no longer have that previous snapshot in context (e.g. it was summarized away) and need the entire element list again.",
      +                "type": "boolean"
      +              },
      +              "maxElements": {
      +                "description": "Maximum number of elements to return (default 500)",
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "targetId": {
      +                "description": "Optional tab targetId to peek at without switching the active tab. Obtain via getTabs or a prior snapshot response. Omit to snapshot the active tab.",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "getTabs",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "switchTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "targetId": {
      +                "description": "The targetId of the tab to make active (from getTabs).",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "targetId"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "createTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "activate": {
      +                "description": "If true (default), switch to the new tab. If false, open it in the background and leave the current tab active.",
      +                "type": "boolean"
      +              },
      +              "url": {
      +                "description": "URL to open in the new tab. Defaults to about:blank if omitted.",
      +                "type": "string"
      +              },
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Only applies when activate is true. Defaults to \"domcontentloaded\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "closeTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "targetId": {
      +                "description": "The targetId of the tab to close.",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "targetId"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "click",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the element to click. Omit when clicking by coordinate (x/y).",
      +                "type": "string"
      +              },
      +              "x": {
      +                "description": "Vision fallback: raw screenshot-pixel X to click. Read it off a viewport (non-fullPage) screenshot and pass it as-is — the server maps screenshot pixels to the page. Provide x and y together, without selector.",
      +                "type": "number"
      +              },
      +              "y": {
      +                "description": "Vision fallback: raw screenshot-pixel Y to click. See x.",
      +                "type": "number"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "type",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the input element",
      +                "type": "string"
      +              },
      +              "text": {
      +                "description": "Text to type into the element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "text"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "loadSecret",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "ref": {
      +                "description": "The credential reference/alias to inject (e.g. an op:// reference). The secret value is resolved server-side and typed into the field — you never see it. Use this for ALL passwords and usernames from a secrets vault; never put a secret value in `type`. Also accepts a mail://<item>/otp reference that resolves the newest emailed one-time code server-side (value never surfaced); trigger the send, then call loadSecret promptly.",
      +                "type": "string"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the input to fill. If omitted, the secret is injected into the currently focused element (click/focus the field first).",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "ref"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "clearSecrets",
      +            "description": "Re-enable screenshot, PDF, liveURL, and page-content-read captures (evaluate/html/text/querySelector/cookies) after a loadSecret login once the credential is no longer visible. Required for single-page apps that do not navigate; replay remains masked.",
      +            "type": "string"
      +          },
      +          "params": {
      +            "additionalProperties": false,
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "select",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the select element",
      +                "type": "string"
      +              },
      +              "value": {
      +                "description": "Option value to select. The snapshot lists a select's accepted values as options=[label=value, …] (bare entries have label === value) — take the value from there instead of guessing or reading the DOM with evaluate.",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "value"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "checkbox",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "checked": {
      +                "description": "Desired checked state (default: toggle)",
      +                "type": "boolean"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the checkbox element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "hover",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the element to hover over",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "scroll",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "direction": {
      +                "description": "Scroll direction. Defaults to \"down\".",
      +                "enum": [
      +                  "up",
      +                  "down",
      +                  "left",
      +                  "right"
      +                ],
      +                "type": "string"
      +              },
      +              "selector": {
      +                "description": "CSS selector of element to scroll (omit for page scroll)",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "evaluate",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "content": {
      +                "description": "JavaScript code to execute (use IIFE syntax)",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "content"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "text",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to extract text from",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "html",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to get HTML from",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForSelector",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to wait for",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (recommend 5000-10000)",
      +                "type": "number"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForNavigation",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForTimeout",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "time": {
      +                "description": "Time to wait in milliseconds (e.g., 3000 for 3 seconds)",
      +                "type": "number"
      +              }
      +            },
      +            "required": [
      +              "time"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForRequest",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "method": {
      +                "description": "HTTP method to match (e.g., \"GET\", \"POST\")",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForResponse",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "statuses": {
      +                "description": "HTTP status codes to match (e.g., [200, 201])",
      +                "items": {
      +                  "type": "number"
      +                },
      +                "type": "array"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "liveURL",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "interactable": {
      +                "description": "Allow interaction via the live URL",
      +                "type": "boolean"
      +              },
      +              "quality": {
      +                "description": "Image quality (1-100)",
      +                "maximum": 100,
      +                "minimum": 1,
      +                "type": "integer"
      +              },
      +              "resizable": {
      +                "description": "Allow resizing the browser viewport",
      +                "type": "boolean"
      +              },
      +              "timeout": {
      +                "description": "How long the live URL stays active (ms)",
      +                "type": "number"
      +              },
      +              "type": {
      +                "description": "Image format for the stream",
      +                "enum": [
      +                  "jpeg",
      +                  "png"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "solve",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "timeout": {
      +                "description": "How long to wait for the captcha to appear (ms). Default 30000. Does not bound the solver itself once a captcha is found.",
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "type": {
      +                "description": "Captcha type to solve. Omit to auto-detect.",
      +                "enum": [
      +                  "cloudflare",
      +                  "hcaptcha",
      +                  "recaptcha",
      +                  "recaptchaV3",
      +                  "geetest",
      +                  "normal",
      +                  "friendlyCaptcha",
      +                  "capy",
      +                  "textCaptcha",
      +                  "amazonWaf",
      +                  "dataDome",
      +                  "akamai",
      +                  "lemin",
      +                  "mtcaptcha",
      +                  "slider"
      +                ],
      +                "type": "string"
      +              },
      +              "wait": {
      +                "description": "Wait for the captcha to appear before solving (default true). Set false if you have already verified the widget is on screen.",
      +                "type": "boolean"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "screenshot",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "clip": {
      +                "description": "Region of the page to capture. Mutually exclusive with selector/fullPage.",
      +                "properties": {
      +                  "height": {
      +                    "description": "Height of the clip, in CSS pixels (>0)",
      +                    "minimum": 1,
      +                    "type": "number"
      +                  },
      +                  "scale": {
      +                    "description": "Scale factor of the clip (default 1, >0)",
      +                    "exclusiveMinimum": 0,
      +                    "type": "number"
      +                  },
      +                  "width": {
      +                    "description": "Width of the clip, in CSS pixels (>0)",
      +                    "minimum": 1,
      +                    "type": "number"
      +                  },
      +                  "x": {
      +                    "description": "X coordinate of the top-left corner, in CSS pixels",
      +                    "type": "number"
      +                  },
      +                  "y": {
      +                    "description": "Y coordinate of the top-left corner, in CSS pixels",
      +                    "type": "number"
      +                  }
      +                },
      +                "required": [
      +                  "x",
      +                  "y",
      +                  "width",
      +                  "height"
      +                ],
      +                "type": "object"
      +              },
      +              "fullPage": {
      +                "description": "Capture the entire scrollable page (default false)",
      +                "type": "boolean"
      +              },
      +              "omitBackground": {
      +                "description": "Hide default white background for transparent screenshots",
      +                "type": "boolean"
      +              },
      +              "quality": {
      +                "description": "Image quality 0-100. Applies to jpeg/webp only.",
      +                "maximum": 100,
      +                "minimum": 0,
      +                "type": "number"
      +              },
      +              "selector": {
      +                "description": "CSS selector of an element to screenshot. Mutually exclusive with fullPage/clip.",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "toDisk": {
      +                "description": "Save the screenshot to disk instead of returning it inline. You will NOT see the image; the response gives a reusable handle (local path in stdio, single-use GET URL over HTTP) exactly like a download — reuse it with uploadFile or hand it to the user. Use when you only need the file later, not to look at now (see file-transfers).",
      +                "type": "boolean"
      +              },
      +              "type": {
      +                "description": "Image format. Default \"png\". Use \"jpeg\" for smaller payloads on large pages.",
      +                "enum": [
      +                  "jpeg",
      +                  "png",
      +                  "webp"
      +                ],
      +                "type": "string"
      +              },
      +              "waitForImages": {
      +                "description": "Wait for all images on the page to load before capturing",
      +                "type": "boolean"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "uploadFile",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "files": {
      +                "description": "Files to attach. Combined decoded size is capped (server default 10MB, hard max 50MB).",
      +                "items": {
      +                  "properties": {
      +                    "content": {
      +                      "description": "Base64-encoded file content. LAST RESORT — only for tiny data you already hold inline. Do NOT read a file into the conversation, and never split/reassemble base64 by hand: use `path` (stdio) or `handle` so the server moves the bytes.",
      +                      "type": "string"
      +                    },
      +                    "handle": {
      +                      "description": "A download handle from a prior getDownloads (a path in stdio mode, a `browserless-download://` URI in HTTP mode). The MCP server reads the stored file — works in both transports and keeps the bytes out of the conversation. Use this to re-upload a file you just downloaded.",
      +                      "type": "string"
      +                    },
      +                    "mimeType": {
      +                      "description": "MIME type; inferred from the extension when omitted.",
      +                      "type": "string"
      +                    },
      +                    "name": {
      +                      "description": "Filename reported to the page. Defaults to the basename of `path`, else \"file\".",
      +                      "type": "string"
      +                    },
      +                    "path": {
      +                      "description": "Local filesystem path to read and upload. stdio (local) mode only — the MCP server reads and base64-encodes it. In HTTP mode use `handle` or `content` instead.",
      +                      "type": "string"
      +                    }
      +                  },
      +                  "type": "object"
      +                },
      +                "minItems": 1,
      +                "type": "array"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the <input type=\"file\"> element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "files"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "getDownloads",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "startRecording",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "height": {
      +                "type": "number"
      +              },
      +              "width": {
      +                "type": "number"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "stopRecording",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "close",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      }
      +    ]
      +  },
      +  {
      +    "properties": {
      +      "method": {
      +        "description": "The BQL method name",
      +        "type": "string"
      +      },
      +      "params": {
      +        "additionalProperties": {},
      +        "default": {},
      +        "description": "Parameters for the method",
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      }
      +    },
      +    "required": [
      +      "method"
      +    ],
      +    "type": "object"
      +  }
      +]
    • addedInput schema / properties / humanlike
      Added value: +{
      +  "description": "Human-like cursor movement + pacing for clicks/scrolls. Improves the passive score of invisible anti-bot challenges (which weight real mouse/interaction signals). Defaults on. Forwarded as ?humanlike; read once at session creation.",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / os
      Added value: +{
      +  "description": "Desktop OS to spoof for the stealth fingerprint (navigator.platform, UA, UA-CH client hints, GPU/font signals). Defaults to \"windows\" so the agent presents a coherent, low-risk desktop identity instead of its native Linux (a Chrome-masked UA over \"Linux x86_64\" is a bot tell that anti-bot checks flag). Forwarded to the browser as ?emulationOs; read once at session creation.",
      +  "enum": [
      +    "windows",
      +    "macos",
      +    "linux"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / record
      Added value: +{
      +  "description": "Arm screen-video recording at session launch. Use `startRecording` / `stopRecording`; stopping returns a single-use WebM link, never bytes.",
      +  "type": "boolean"
      +}
  2. Changed3 schema fields changedv1.24.0
    • addedInput schema / properties / allowedDomains
      Added value: +{
      +  "description": "Origins where a resolved secret may be filled, e.g. [\"https://gymshark.com\"]. Only meaningful with `integrationId`. Defaults to the integration's configured origins; set it to fill on additional sites. loadSecret is refused on any origin not covered here.",
      +  "items": {
      +    "minLength": 1,
      +    "type": "string"
      +  },
      +  "type": "array"
      +}
    • changedInput schema / properties / commands / items / anyOf
      Previous value: -[
      -  {
      -    "oneOf": [
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "goto",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "timeout": {
      -                "description": "Navigation timeout in milliseconds",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "The URL to navigate to",
      -                "type": "string"
      -              },
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"domcontentloaded\". Avoid networkidle0/networkidle2 unless explicitly needed — they hang on SPAs and dynamic sites.",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "url"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "back",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "forward",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "reload",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "snapshot",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "full": {
      -                "description": "Force a complete snapshot instead of a diff. Snapshots normally return only what changed since your previous one; set full:true when you no longer have that previous snapshot in context (e.g. it was summarized away) and need the entire element list again.",
      -                "type": "boolean"
      -              },
      -              "maxElements": {
      -                "description": "Maximum number of elements to return (default 500)",
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "targetId": {
      -                "description": "Optional tab targetId to peek at without switching the active tab. Obtain via getTabs or a prior snapshot response. Omit to snapshot the active tab.",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "getTabs",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "switchTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "targetId": {
      -                "description": "The targetId of the tab to make active (from getTabs).",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "targetId"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "createTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "activate": {
      -                "description": "If true (default), switch to the new tab. If false, open it in the background and leave the current tab active.",
      -                "type": "boolean"
      -              },
      -              "url": {
      -                "description": "URL to open in the new tab. Defaults to about:blank if omitted.",
      -                "type": "string"
      -              },
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Only applies when activate is true. Defaults to \"domcontentloaded\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "closeTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "targetId": {
      -                "description": "The targetId of the tab to close.",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "targetId"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "click",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the element to click",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "type",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the input element",
      -                "type": "string"
      -              },
      -              "text": {
      -                "description": "Text to type into the element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "text"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "loadSecret",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "ref": {
      -                "description": "The credential reference/alias to inject (e.g. an op:// reference). The secret value is resolved server-side and typed into the field — you never see it. Use this for ALL passwords and usernames from a secrets vault; never put a secret value in `type`.",
      -                "type": "string"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the input to fill. If omitted, the secret is injected into the currently focused element (click/focus the field first).",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "ref"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "select",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the select element",
      -                "type": "string"
      -              },
      -              "value": {
      -                "description": "Option value to select. The snapshot lists a select's accepted values as options=[label=value, …] (bare entries have label === value) — take the value from there instead of guessing or reading the DOM with evaluate.",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "value"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "checkbox",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "checked": {
      -                "description": "Desired checked state (default: toggle)",
      -                "type": "boolean"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the checkbox element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "hover",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the element to hover over",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "scroll",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "direction": {
      -                "description": "Scroll direction. Defaults to \"down\".",
      -                "enum": [
      -                  "up",
      -                  "down",
      -                  "left",
      -                  "right"
      -                ],
      -                "type": "string"
      -              },
      -              "selector": {
      -                "description": "CSS selector of element to scroll (omit for page scroll)",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "evaluate",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "content": {
      -                "description": "JavaScript code to execute (use IIFE syntax)",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "content"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "text",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to extract text from",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "html",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to get HTML from",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForSelector",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to wait for",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (recommend 5000-10000)",
      -                "type": "number"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForNavigation",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForTimeout",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "time": {
      -                "description": "Time to wait in milliseconds (e.g., 3000 for 3 seconds)",
      -                "type": "number"
      -              }
      -            },
      -            "required": [
      -              "time"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForRequest",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "method": {
      -                "description": "HTTP method to match (e.g., \"GET\", \"POST\")",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForResponse",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "statuses": {
      -                "description": "HTTP status codes to match (e.g., [200, 201])",
      -                "items": {
      -                  "type": "number"
      -                },
      -                "type": "array"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "liveURL",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "interactable": {
      -                "description": "Allow interaction via the live URL",
      -                "type": "boolean"
      -              },
      -              "quality": {
      -                "description": "Image quality (1-100)",
      -                "maximum": 100,
      -                "minimum": 1,
      -                "type": "integer"
      -              },
      -              "resizable": {
      -                "description": "Allow resizing the browser viewport",
      -                "type": "boolean"
      -              },
      -              "timeout": {
      -                "description": "How long the live URL stays active (ms)",
      -                "type": "number"
      -              },
      -              "type": {
      -                "description": "Image format for the stream",
      -                "enum": [
      -                  "jpeg",
      -                  "png"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "solve",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "timeout": {
      -                "description": "How long to wait for the captcha to appear (ms). Default 30000. Does not bound the solver itself once a captcha is found.",
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "type": {
      -                "description": "Captcha type to solve. Omit to auto-detect.",
      -                "enum": [
      -                  "cloudflare",
      -                  "hcaptcha",
      -                  "recaptcha",
      -                  "recaptchaV3",
      -                  "geetest",
      -                  "normal",
      -                  "friendlyCaptcha",
      -                  "capy",
      -                  "textCaptcha",
      -                  "amazonWaf",
      -                  "dataDome",
      -                  "akamai",
      -                  "lemin",
      -                  "mtcaptcha",
      -                  "slider"
      -                ],
      -                "type": "string"
      -              },
      -              "wait": {
      -                "description": "Wait for the captcha to appear before solving (default true). Set false if you have already verified the widget is on screen.",
      -                "type": "boolean"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "screenshot",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "clip": {
      -                "description": "Region of the page to capture. Mutually exclusive with selector/fullPage.",
      -                "properties": {
      -                  "height": {
      -                    "description": "Height of the clip, in CSS pixels (>0)",
      -                    "minimum": 1,
      -                    "type": "number"
      -                  },
      -                  "scale": {
      -                    "description": "Scale factor of the clip (default 1, >0)",
      -                    "exclusiveMinimum": 0,
      -                    "type": "number"
      -                  },
      -                  "width": {
      -                    "description": "Width of the clip, in CSS pixels (>0)",
      -                    "minimum": 1,
      -                    "type": "number"
      -                  },
      -                  "x": {
      -                    "description": "X coordinate of the top-left corner, in CSS pixels",
      -                    "type": "number"
      -                  },
      -                  "y": {
      -                    "description": "Y coordinate of the top-left corner, in CSS pixels",
      -                    "type": "number"
      -                  }
      -                },
      -                "required": [
      -                  "x",
      -                  "y",
      -                  "width",
      -                  "height"
      -                ],
      -                "type": "object"
      -              },
      -              "fullPage": {
      -                "description": "Capture the entire scrollable page (default false)",
      -                "type": "boolean"
      -              },
      -              "omitBackground": {
      -                "description": "Hide default white background for transparent screenshots",
      -                "type": "boolean"
      -              },
      -              "quality": {
      -                "description": "Image quality 0-100. Applies to jpeg/webp only.",
      -                "maximum": 100,
      -                "minimum": 0,
      -                "type": "number"
      -              },
      -              "selector": {
      -                "description": "CSS selector of an element to screenshot. Mutually exclusive with fullPage/clip.",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "toDisk": {
      -                "description": "Save the screenshot to disk instead of returning it inline. You will NOT see the image; the response gives a reusable handle (local path in stdio, single-use GET URL over HTTP) exactly like a download — reuse it with uploadFile or hand it to the user. Use when you only need the file later, not to look at now (see file-transfers).",
      -                "type": "boolean"
      -              },
      -              "type": {
      -                "description": "Image format. Default \"png\". Use \"jpeg\" for smaller payloads on large pages.",
      -                "enum": [
      -                  "jpeg",
      -                  "png",
      -                  "webp"
      -                ],
      -                "type": "string"
      -              },
      -              "waitForImages": {
      -                "description": "Wait for all images on the page to load before capturing",
      -                "type": "boolean"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "uploadFile",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "files": {
      -                "description": "Files to attach. Combined decoded size is capped (server default 10MB, hard max 50MB).",
      -                "items": {
      -                  "properties": {
      -                    "content": {
      -                      "description": "Base64-encoded file content. LAST RESORT — only for tiny data you already hold inline. Do NOT read a file into the conversation, and never split/reassemble base64 by hand: use `path` (stdio) or `handle` so the server moves the bytes.",
      -                      "type": "string"
      -                    },
      -                    "handle": {
      -                      "description": "A download handle from a prior getDownloads (a path in stdio mode, a `browserless-download://` URI in HTTP mode). The MCP server reads the stored file — works in both transports and keeps the bytes out of the conversation. Use this to re-upload a file you just downloaded.",
      -                      "type": "string"
      -                    },
      -                    "mimeType": {
      -                      "description": "MIME type; inferred from the extension when omitted.",
      -                      "type": "string"
      -                    },
      -                    "name": {
      -                      "description": "Filename reported to the page. Defaults to the basename of `path`, else \"file\".",
      -                      "type": "string"
      -                    },
      -                    "path": {
      -                      "description": "Local filesystem path to read and upload. stdio (local) mode only — the MCP server reads and base64-encodes it. In HTTP mode use `handle` or `content` instead.",
      -                      "type": "string"
      -                    }
      -                  },
      -                  "type": "object"
      -                },
      -                "minItems": 1,
      -                "type": "array"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the <input type=\"file\"> element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "files"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "getDownloads",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "close",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      }
      -    ]
      -  },
      -  {
      -    "properties": {
      -      "method": {
      -        "description": "The BQL method name",
      -        "type": "string"
      -      },
      -      "params": {
      -        "additionalProperties": {},
      -        "default": {},
      -        "description": "Parameters for the method",
      -        "propertyNames": {
      -          "type": "string"
      -        },
      -        "type": "object"
      -      }
      -    },
      -    "required": [
      -      "method"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "oneOf": [
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "goto",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "timeout": {
      +                "description": "Navigation timeout in milliseconds",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "The URL to navigate to",
      +                "type": "string"
      +              },
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"domcontentloaded\". Avoid networkidle0/networkidle2 unless explicitly needed — they hang on SPAs and dynamic sites.",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "url"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "back",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "forward",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "reload",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "snapshot",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "full": {
      +                "description": "Force a complete snapshot instead of a diff. Snapshots normally return only what changed since your previous one; set full:true when you no longer have that previous snapshot in context (e.g. it was summarized away) and need the entire element list again.",
      +                "type": "boolean"
      +              },
      +              "maxElements": {
      +                "description": "Maximum number of elements to return (default 500)",
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "targetId": {
      +                "description": "Optional tab targetId to peek at without switching the active tab. Obtain via getTabs or a prior snapshot response. Omit to snapshot the active tab.",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "getTabs",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "switchTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "targetId": {
      +                "description": "The targetId of the tab to make active (from getTabs).",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "targetId"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "createTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "activate": {
      +                "description": "If true (default), switch to the new tab. If false, open it in the background and leave the current tab active.",
      +                "type": "boolean"
      +              },
      +              "url": {
      +                "description": "URL to open in the new tab. Defaults to about:blank if omitted.",
      +                "type": "string"
      +              },
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Only applies when activate is true. Defaults to \"domcontentloaded\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "closeTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "targetId": {
      +                "description": "The targetId of the tab to close.",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "targetId"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "click",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the element to click",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "type",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the input element",
      +                "type": "string"
      +              },
      +              "text": {
      +                "description": "Text to type into the element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "text"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "loadSecret",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "ref": {
      +                "description": "The credential reference/alias to inject (e.g. an op:// reference). The secret value is resolved server-side and typed into the field — you never see it. Use this for ALL passwords and usernames from a secrets vault; never put a secret value in `type`. Also accepts a mail://<item>/otp reference that resolves the newest emailed one-time code server-side (value never surfaced); trigger the send, then call loadSecret promptly.",
      +                "type": "string"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the input to fill. If omitted, the secret is injected into the currently focused element (click/focus the field first).",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "ref"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "select",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the select element",
      +                "type": "string"
      +              },
      +              "value": {
      +                "description": "Option value to select. The snapshot lists a select's accepted values as options=[label=value, …] (bare entries have label === value) — take the value from there instead of guessing or reading the DOM with evaluate.",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "value"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "checkbox",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "checked": {
      +                "description": "Desired checked state (default: toggle)",
      +                "type": "boolean"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the checkbox element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "hover",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the element to hover over",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "scroll",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "direction": {
      +                "description": "Scroll direction. Defaults to \"down\".",
      +                "enum": [
      +                  "up",
      +                  "down",
      +                  "left",
      +                  "right"
      +                ],
      +                "type": "string"
      +              },
      +              "selector": {
      +                "description": "CSS selector of element to scroll (omit for page scroll)",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "evaluate",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "content": {
      +                "description": "JavaScript code to execute (use IIFE syntax)",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "content"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "text",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to extract text from",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "html",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to get HTML from",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForSelector",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to wait for",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (recommend 5000-10000)",
      +                "type": "number"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForNavigation",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForTimeout",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "time": {
      +                "description": "Time to wait in milliseconds (e.g., 3000 for 3 seconds)",
      +                "type": "number"
      +              }
      +            },
      +            "required": [
      +              "time"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForRequest",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "method": {
      +                "description": "HTTP method to match (e.g., \"GET\", \"POST\")",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForResponse",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "statuses": {
      +                "description": "HTTP status codes to match (e.g., [200, 201])",
      +                "items": {
      +                  "type": "number"
      +                },
      +                "type": "array"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "liveURL",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "interactable": {
      +                "description": "Allow interaction via the live URL",
      +                "type": "boolean"
      +              },
      +              "quality": {
      +                "description": "Image quality (1-100)",
      +                "maximum": 100,
      +                "minimum": 1,
      +                "type": "integer"
      +              },
      +              "resizable": {
      +                "description": "Allow resizing the browser viewport",
      +                "type": "boolean"
      +              },
      +              "timeout": {
      +                "description": "How long the live URL stays active (ms)",
      +                "type": "number"
      +              },
      +              "type": {
      +                "description": "Image format for the stream",
      +                "enum": [
      +                  "jpeg",
      +                  "png"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "solve",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "timeout": {
      +                "description": "How long to wait for the captcha to appear (ms). Default 30000. Does not bound the solver itself once a captcha is found.",
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "type": {
      +                "description": "Captcha type to solve. Omit to auto-detect.",
      +                "enum": [
      +                  "cloudflare",
      +                  "hcaptcha",
      +                  "recaptcha",
      +                  "recaptchaV3",
      +                  "geetest",
      +                  "normal",
      +                  "friendlyCaptcha",
      +                  "capy",
      +                  "textCaptcha",
      +                  "amazonWaf",
      +                  "dataDome",
      +                  "akamai",
      +                  "lemin",
      +                  "mtcaptcha",
      +                  "slider"
      +                ],
      +                "type": "string"
      +              },
      +              "wait": {
      +                "description": "Wait for the captcha to appear before solving (default true). Set false if you have already verified the widget is on screen.",
      +                "type": "boolean"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "screenshot",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "clip": {
      +                "description": "Region of the page to capture. Mutually exclusive with selector/fullPage.",
      +                "properties": {
      +                  "height": {
      +                    "description": "Height of the clip, in CSS pixels (>0)",
      +                    "minimum": 1,
      +                    "type": "number"
      +                  },
      +                  "scale": {
      +                    "description": "Scale factor of the clip (default 1, >0)",
      +                    "exclusiveMinimum": 0,
      +                    "type": "number"
      +                  },
      +                  "width": {
      +                    "description": "Width of the clip, in CSS pixels (>0)",
      +                    "minimum": 1,
      +                    "type": "number"
      +                  },
      +                  "x": {
      +                    "description": "X coordinate of the top-left corner, in CSS pixels",
      +                    "type": "number"
      +                  },
      +                  "y": {
      +                    "description": "Y coordinate of the top-left corner, in CSS pixels",
      +                    "type": "number"
      +                  }
      +                },
      +                "required": [
      +                  "x",
      +                  "y",
      +                  "width",
      +                  "height"
      +                ],
      +                "type": "object"
      +              },
      +              "fullPage": {
      +                "description": "Capture the entire scrollable page (default false)",
      +                "type": "boolean"
      +              },
      +              "omitBackground": {
      +                "description": "Hide default white background for transparent screenshots",
      +                "type": "boolean"
      +              },
      +              "quality": {
      +                "description": "Image quality 0-100. Applies to jpeg/webp only.",
      +                "maximum": 100,
      +                "minimum": 0,
      +                "type": "number"
      +              },
      +              "selector": {
      +                "description": "CSS selector of an element to screenshot. Mutually exclusive with fullPage/clip.",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "toDisk": {
      +                "description": "Save the screenshot to disk instead of returning it inline. You will NOT see the image; the response gives a reusable handle (local path in stdio, single-use GET URL over HTTP) exactly like a download — reuse it with uploadFile or hand it to the user. Use when you only need the file later, not to look at now (see file-transfers).",
      +                "type": "boolean"
      +              },
      +              "type": {
      +                "description": "Image format. Default \"png\". Use \"jpeg\" for smaller payloads on large pages.",
      +                "enum": [
      +                  "jpeg",
      +                  "png",
      +                  "webp"
      +                ],
      +                "type": "string"
      +              },
      +              "waitForImages": {
      +                "description": "Wait for all images on the page to load before capturing",
      +                "type": "boolean"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "uploadFile",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "files": {
      +                "description": "Files to attach. Combined decoded size is capped (server default 10MB, hard max 50MB).",
      +                "items": {
      +                  "properties": {
      +                    "content": {
      +                      "description": "Base64-encoded file content. LAST RESORT — only for tiny data you already hold inline. Do NOT read a file into the conversation, and never split/reassemble base64 by hand: use `path` (stdio) or `handle` so the server moves the bytes.",
      +                      "type": "string"
      +                    },
      +                    "handle": {
      +                      "description": "A download handle from a prior getDownloads (a path in stdio mode, a `browserless-download://` URI in HTTP mode). The MCP server reads the stored file — works in both transports and keeps the bytes out of the conversation. Use this to re-upload a file you just downloaded.",
      +                      "type": "string"
      +                    },
      +                    "mimeType": {
      +                      "description": "MIME type; inferred from the extension when omitted.",
      +                      "type": "string"
      +                    },
      +                    "name": {
      +                      "description": "Filename reported to the page. Defaults to the basename of `path`, else \"file\".",
      +                      "type": "string"
      +                    },
      +                    "path": {
      +                      "description": "Local filesystem path to read and upload. stdio (local) mode only — the MCP server reads and base64-encodes it. In HTTP mode use `handle` or `content` instead.",
      +                      "type": "string"
      +                    }
      +                  },
      +                  "type": "object"
      +                },
      +                "minItems": 1,
      +                "type": "array"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the <input type=\"file\"> element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "files"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "getDownloads",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "close",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      }
      +    ]
      +  },
      +  {
      +    "properties": {
      +      "method": {
      +        "description": "The BQL method name",
      +        "type": "string"
      +      },
      +      "params": {
      +        "additionalProperties": {},
      +        "default": {},
      +        "description": "Parameters for the method",
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      }
      +    },
      +    "required": [
      +      "method"
      +    ],
      +    "type": "object"
      +  }
      +]
    • addedInput schema / properties / integrationId
      Added value: +{
      +  "description": "Optional 1Password integration id (e.g. \"op_int_…\") to bind to the agent session so `loadSecret` can resolve `op://vault/item/field` references. Find it via GET /integrations/onepassword. Bind it on EVERY call in a multi-call flow (like `profile`); a call that omits it runs with no vault bound and `loadSecret` returns CredentialNotResolved. Pair with `allowedDomains` to permit filling on the target sites.",
      +  "minLength": 1,
      +  "type": "string"
      +}
  3. Changed2 schema fields changedv1.20.0
    • changedInput schema / properties / commands / items / anyOf
      Previous value: -[
      -  {
      -    "oneOf": [
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "goto",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "timeout": {
      -                "description": "Navigation timeout in milliseconds",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "The URL to navigate to",
      -                "type": "string"
      -              },
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"domcontentloaded\". Avoid networkidle0/networkidle2 unless explicitly needed — they hang on SPAs and dynamic sites.",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "url"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "back",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "forward",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "reload",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Defaults to \"load\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "snapshot",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "full": {
      -                "description": "Force a complete snapshot instead of a diff. Snapshots normally return only what changed since your previous one; set full:true when you no longer have that previous snapshot in context (e.g. it was summarized away) and need the entire element list again.",
      -                "type": "boolean"
      -              },
      -              "maxElements": {
      -                "description": "Maximum number of elements to return (default 500)",
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "targetId": {
      -                "description": "Optional tab targetId to peek at without switching the active tab. Obtain via getTabs or a prior snapshot response. Omit to snapshot the active tab.",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "getTabs",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "switchTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "targetId": {
      -                "description": "The targetId of the tab to make active (from getTabs).",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "targetId"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "createTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "activate": {
      -                "description": "If true (default), switch to the new tab. If false, open it in the background and leave the current tab active.",
      -                "type": "boolean"
      -              },
      -              "url": {
      -                "description": "URL to open in the new tab. Defaults to about:blank if omitted.",
      -                "type": "string"
      -              },
      -              "waitUntil": {
      -                "description": "When to consider navigation complete. Only applies when activate is true. Defaults to \"domcontentloaded\".",
      -                "enum": [
      -                  "load",
      -                  "domcontentloaded",
      -                  "networkidle0",
      -                  "networkidle2"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "closeTab",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "targetId": {
      -                "description": "The targetId of the tab to close.",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "targetId"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "click",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the element to click",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "type",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the input element",
      -                "type": "string"
      -              },
      -              "text": {
      -                "description": "Text to type into the element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "text"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "loadSecret",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "ref": {
      -                "description": "The credential reference/alias to inject (e.g. an op:// reference). The secret value is resolved server-side and typed into the field — you never see it. Use this for ALL passwords and usernames from a secrets vault; never put a secret value in `type`.",
      -                "type": "string"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the input to fill. If omitted, the secret is injected into the currently focused element (click/focus the field first).",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "ref"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "select",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the select element",
      -                "type": "string"
      -              },
      -              "value": {
      -                "description": "Option value to select",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "value"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "checkbox",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "checked": {
      -                "description": "Desired checked state (default: toggle)",
      -                "type": "boolean"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the checkbox element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "hover",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector of the element to hover over",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "scroll",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "direction": {
      -                "description": "Scroll direction. Defaults to \"down\".",
      -                "enum": [
      -                  "up",
      -                  "down",
      -                  "left",
      -                  "right"
      -                ],
      -                "type": "string"
      -              },
      -              "selector": {
      -                "description": "CSS selector of element to scroll (omit for page scroll)",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "evaluate",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "content": {
      -                "description": "JavaScript code to execute (use IIFE syntax)",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "content"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "text",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to extract text from",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "html",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to get HTML from",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForSelector",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "selector": {
      -                "description": "CSS selector to wait for",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (recommend 5000-10000)",
      -                "type": "number"
      -              }
      -            },
      -            "required": [
      -              "selector"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForNavigation",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForTimeout",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "time": {
      -                "description": "Time to wait in milliseconds (e.g., 3000 for 3 seconds)",
      -                "type": "number"
      -              }
      -            },
      -            "required": [
      -              "time"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForRequest",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "method": {
      -                "description": "HTTP method to match (e.g., \"GET\", \"POST\")",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "waitForResponse",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "statuses": {
      -                "description": "HTTP status codes to match (e.g., [200, 201])",
      -                "items": {
      -                  "type": "number"
      -                },
      -                "type": "array"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "url": {
      -                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "liveURL",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "interactable": {
      -                "description": "Allow interaction via the live URL",
      -                "type": "boolean"
      -              },
      -              "quality": {
      -                "description": "Image quality (1-100)",
      -                "maximum": 100,
      -                "minimum": 1,
      -                "type": "integer"
      -              },
      -              "resizable": {
      -                "description": "Allow resizing the browser viewport",
      -                "type": "boolean"
      -              },
      -              "timeout": {
      -                "description": "How long the live URL stays active (ms)",
      -                "type": "number"
      -              },
      -              "type": {
      -                "description": "Image format for the stream",
      -                "enum": [
      -                  "jpeg",
      -                  "png"
      -                ],
      -                "type": "string"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "solve",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "timeout": {
      -                "description": "How long to wait for the captcha to appear (ms). Default 30000. Does not bound the solver itself once a captcha is found.",
      -                "exclusiveMinimum": 0,
      -                "maximum": 9007199254740991,
      -                "type": "integer"
      -              },
      -              "type": {
      -                "description": "Captcha type to solve. Omit to auto-detect.",
      -                "enum": [
      -                  "cloudflare",
      -                  "hcaptcha",
      -                  "recaptcha",
      -                  "recaptchaV3",
      -                  "geetest",
      -                  "normal",
      -                  "friendlyCaptcha",
      -                  "capy",
      -                  "textCaptcha",
      -                  "amazonWaf",
      -                  "dataDome",
      -                  "akamai",
      -                  "lemin",
      -                  "mtcaptcha",
      -                  "slider"
      -                ],
      -                "type": "string"
      -              },
      -              "wait": {
      -                "description": "Wait for the captcha to appear before solving (default true). Set false if you have already verified the widget is on screen.",
      -                "type": "boolean"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "screenshot",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {
      -              "clip": {
      -                "description": "Region of the page to capture. Mutually exclusive with selector/fullPage.",
      -                "properties": {
      -                  "height": {
      -                    "description": "Height of the clip, in CSS pixels (>0)",
      -                    "minimum": 1,
      -                    "type": "number"
      -                  },
      -                  "scale": {
      -                    "description": "Scale factor of the clip (default 1, >0)",
      -                    "exclusiveMinimum": 0,
      -                    "type": "number"
      -                  },
      -                  "width": {
      -                    "description": "Width of the clip, in CSS pixels (>0)",
      -                    "minimum": 1,
      -                    "type": "number"
      -                  },
      -                  "x": {
      -                    "description": "X coordinate of the top-left corner, in CSS pixels",
      -                    "type": "number"
      -                  },
      -                  "y": {
      -                    "description": "Y coordinate of the top-left corner, in CSS pixels",
      -                    "type": "number"
      -                  }
      -                },
      -                "required": [
      -                  "x",
      -                  "y",
      -                  "width",
      -                  "height"
      -                ],
      -                "type": "object"
      -              },
      -              "fullPage": {
      -                "description": "Capture the entire scrollable page (default false)",
      -                "type": "boolean"
      -              },
      -              "omitBackground": {
      -                "description": "Hide default white background for transparent screenshots",
      -                "type": "boolean"
      -              },
      -              "quality": {
      -                "description": "Image quality 0-100. Applies to jpeg/webp only.",
      -                "maximum": 100,
      -                "minimum": 0,
      -                "type": "number"
      -              },
      -              "selector": {
      -                "description": "CSS selector of an element to screenshot. Mutually exclusive with fullPage/clip.",
      -                "type": "string"
      -              },
      -              "timeout": {
      -                "description": "Timeout in milliseconds (default 30000)",
      -                "type": "number"
      -              },
      -              "toDisk": {
      -                "description": "Save the screenshot to disk instead of returning it inline. You will NOT see the image; the response gives a reusable handle (local path in stdio, single-use GET URL over HTTP) exactly like a download — reuse it with uploadFile or hand it to the user. Use when you only need the file later, not to look at now (see file-transfers).",
      -                "type": "boolean"
      -              },
      -              "type": {
      -                "description": "Image format. Default \"png\". Use \"jpeg\" for smaller payloads on large pages.",
      -                "enum": [
      -                  "jpeg",
      -                  "png",
      -                  "webp"
      -                ],
      -                "type": "string"
      -              },
      -              "waitForImages": {
      -                "description": "Wait for all images on the page to load before capturing",
      -                "type": "boolean"
      -              }
      -            },
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "uploadFile",
      -            "type": "string"
      -          },
      -          "params": {
      -            "properties": {
      -              "files": {
      -                "description": "Files to attach. Combined decoded size is capped (server default 10MB, hard max 50MB).",
      -                "items": {
      -                  "properties": {
      -                    "content": {
      -                      "description": "Base64-encoded file content. LAST RESORT — only for tiny data you already hold inline. Do NOT read a file into the conversation, and never split/reassemble base64 by hand: use `path` (stdio) or `handle` so the server moves the bytes.",
      -                      "type": "string"
      -                    },
      -                    "handle": {
      -                      "description": "A download handle from a prior getDownloads (a path in stdio mode, a `browserless-download://` URI in HTTP mode). The MCP server reads the stored file — works in both transports and keeps the bytes out of the conversation. Use this to re-upload a file you just downloaded.",
      -                      "type": "string"
      -                    },
      -                    "mimeType": {
      -                      "description": "MIME type; inferred from the extension when omitted.",
      -                      "type": "string"
      -                    },
      -                    "name": {
      -                      "description": "Filename reported to the page. Defaults to the basename of `path`, else \"file\".",
      -                      "type": "string"
      -                    },
      -                    "path": {
      -                      "description": "Local filesystem path to read and upload. stdio (local) mode only — the MCP server reads and base64-encodes it. In HTTP mode use `handle` or `content` instead.",
      -                      "type": "string"
      -                    }
      -                  },
      -                  "type": "object"
      -                },
      -                "minItems": 1,
      -                "type": "array"
      -              },
      -              "selector": {
      -                "description": "CSS selector of the <input type=\"file\"> element",
      -                "type": "string"
      -              }
      -            },
      -            "required": [
      -              "selector",
      -              "files"
      -            ],
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method",
      -          "params"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "getDownloads",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      },
      -      {
      -        "properties": {
      -          "method": {
      -            "const": "close",
      -            "type": "string"
      -          },
      -          "params": {
      -            "default": {},
      -            "properties": {},
      -            "type": "object"
      -          }
      -        },
      -        "required": [
      -          "method"
      -        ],
      -        "type": "object"
      -      }
      -    ]
      -  },
      -  {
      -    "properties": {
      -      "method": {
      -        "description": "The BQL method name",
      -        "type": "string"
      -      },
      -      "params": {
      -        "additionalProperties": {},
      -        "default": {},
      -        "description": "Parameters for the method",
      -        "propertyNames": {
      -          "type": "string"
      -        },
      -        "type": "object"
      -      }
      -    },
      -    "required": [
      -      "method"
      -    ],
      -    "type": "object"
      -  }
      -]New value: +[
      +  {
      +    "oneOf": [
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "goto",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "timeout": {
      +                "description": "Navigation timeout in milliseconds",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "The URL to navigate to",
      +                "type": "string"
      +              },
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"domcontentloaded\". Avoid networkidle0/networkidle2 unless explicitly needed — they hang on SPAs and dynamic sites.",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "url"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "back",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "forward",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "reload",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Defaults to \"load\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "snapshot",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "full": {
      +                "description": "Force a complete snapshot instead of a diff. Snapshots normally return only what changed since your previous one; set full:true when you no longer have that previous snapshot in context (e.g. it was summarized away) and need the entire element list again.",
      +                "type": "boolean"
      +              },
      +              "maxElements": {
      +                "description": "Maximum number of elements to return (default 500)",
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "targetId": {
      +                "description": "Optional tab targetId to peek at without switching the active tab. Obtain via getTabs or a prior snapshot response. Omit to snapshot the active tab.",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "getTabs",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "switchTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "targetId": {
      +                "description": "The targetId of the tab to make active (from getTabs).",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "targetId"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "createTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "activate": {
      +                "description": "If true (default), switch to the new tab. If false, open it in the background and leave the current tab active.",
      +                "type": "boolean"
      +              },
      +              "url": {
      +                "description": "URL to open in the new tab. Defaults to about:blank if omitted.",
      +                "type": "string"
      +              },
      +              "waitUntil": {
      +                "description": "When to consider navigation complete. Only applies when activate is true. Defaults to \"domcontentloaded\".",
      +                "enum": [
      +                  "load",
      +                  "domcontentloaded",
      +                  "networkidle0",
      +                  "networkidle2"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "closeTab",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "targetId": {
      +                "description": "The targetId of the tab to close.",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "targetId"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "click",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the element to click",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "type",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the input element",
      +                "type": "string"
      +              },
      +              "text": {
      +                "description": "Text to type into the element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "text"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "loadSecret",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "ref": {
      +                "description": "The credential reference/alias to inject (e.g. an op:// reference). The secret value is resolved server-side and typed into the field — you never see it. Use this for ALL passwords and usernames from a secrets vault; never put a secret value in `type`.",
      +                "type": "string"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the input to fill. If omitted, the secret is injected into the currently focused element (click/focus the field first).",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "ref"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "select",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the select element",
      +                "type": "string"
      +              },
      +              "value": {
      +                "description": "Option value to select. The snapshot lists a select's accepted values as options=[label=value, …] (bare entries have label === value) — take the value from there instead of guessing or reading the DOM with evaluate.",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "value"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "checkbox",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "checked": {
      +                "description": "Desired checked state (default: toggle)",
      +                "type": "boolean"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the checkbox element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "hover",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector of the element to hover over",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "scroll",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "direction": {
      +                "description": "Scroll direction. Defaults to \"down\".",
      +                "enum": [
      +                  "up",
      +                  "down",
      +                  "left",
      +                  "right"
      +                ],
      +                "type": "string"
      +              },
      +              "selector": {
      +                "description": "CSS selector of element to scroll (omit for page scroll)",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "evaluate",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "content": {
      +                "description": "JavaScript code to execute (use IIFE syntax)",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "content"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "text",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to extract text from",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "html",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to get HTML from",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForSelector",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "selector": {
      +                "description": "CSS selector to wait for",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (recommend 5000-10000)",
      +                "type": "number"
      +              }
      +            },
      +            "required": [
      +              "selector"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForNavigation",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForTimeout",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "time": {
      +                "description": "Time to wait in milliseconds (e.g., 3000 for 3 seconds)",
      +                "type": "number"
      +              }
      +            },
      +            "required": [
      +              "time"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForRequest",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "method": {
      +                "description": "HTTP method to match (e.g., \"GET\", \"POST\")",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "waitForResponse",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "statuses": {
      +                "description": "HTTP status codes to match (e.g., [200, 201])",
      +                "items": {
      +                  "type": "number"
      +                },
      +                "type": "array"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "url": {
      +                "description": "URL pattern to match (glob-style, e.g., \"*api/results*\")",
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "liveURL",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "interactable": {
      +                "description": "Allow interaction via the live URL",
      +                "type": "boolean"
      +              },
      +              "quality": {
      +                "description": "Image quality (1-100)",
      +                "maximum": 100,
      +                "minimum": 1,
      +                "type": "integer"
      +              },
      +              "resizable": {
      +                "description": "Allow resizing the browser viewport",
      +                "type": "boolean"
      +              },
      +              "timeout": {
      +                "description": "How long the live URL stays active (ms)",
      +                "type": "number"
      +              },
      +              "type": {
      +                "description": "Image format for the stream",
      +                "enum": [
      +                  "jpeg",
      +                  "png"
      +                ],
      +                "type": "string"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "solve",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "timeout": {
      +                "description": "How long to wait for the captcha to appear (ms). Default 30000. Does not bound the solver itself once a captcha is found.",
      +                "exclusiveMinimum": 0,
      +                "maximum": 9007199254740991,
      +                "type": "integer"
      +              },
      +              "type": {
      +                "description": "Captcha type to solve. Omit to auto-detect.",
      +                "enum": [
      +                  "cloudflare",
      +                  "hcaptcha",
      +                  "recaptcha",
      +                  "recaptchaV3",
      +                  "geetest",
      +                  "normal",
      +                  "friendlyCaptcha",
      +                  "capy",
      +                  "textCaptcha",
      +                  "amazonWaf",
      +                  "dataDome",
      +                  "akamai",
      +                  "lemin",
      +                  "mtcaptcha",
      +                  "slider"
      +                ],
      +                "type": "string"
      +              },
      +              "wait": {
      +                "description": "Wait for the captcha to appear before solving (default true). Set false if you have already verified the widget is on screen.",
      +                "type": "boolean"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "screenshot",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {
      +              "clip": {
      +                "description": "Region of the page to capture. Mutually exclusive with selector/fullPage.",
      +                "properties": {
      +                  "height": {
      +                    "description": "Height of the clip, in CSS pixels (>0)",
      +                    "minimum": 1,
      +                    "type": "number"
      +                  },
      +                  "scale": {
      +                    "description": "Scale factor of the clip (default 1, >0)",
      +                    "exclusiveMinimum": 0,
      +                    "type": "number"
      +                  },
      +                  "width": {
      +                    "description": "Width of the clip, in CSS pixels (>0)",
      +                    "minimum": 1,
      +                    "type": "number"
      +                  },
      +                  "x": {
      +                    "description": "X coordinate of the top-left corner, in CSS pixels",
      +                    "type": "number"
      +                  },
      +                  "y": {
      +                    "description": "Y coordinate of the top-left corner, in CSS pixels",
      +                    "type": "number"
      +                  }
      +                },
      +                "required": [
      +                  "x",
      +                  "y",
      +                  "width",
      +                  "height"
      +                ],
      +                "type": "object"
      +              },
      +              "fullPage": {
      +                "description": "Capture the entire scrollable page (default false)",
      +                "type": "boolean"
      +              },
      +              "omitBackground": {
      +                "description": "Hide default white background for transparent screenshots",
      +                "type": "boolean"
      +              },
      +              "quality": {
      +                "description": "Image quality 0-100. Applies to jpeg/webp only.",
      +                "maximum": 100,
      +                "minimum": 0,
      +                "type": "number"
      +              },
      +              "selector": {
      +                "description": "CSS selector of an element to screenshot. Mutually exclusive with fullPage/clip.",
      +                "type": "string"
      +              },
      +              "timeout": {
      +                "description": "Timeout in milliseconds (default 30000)",
      +                "type": "number"
      +              },
      +              "toDisk": {
      +                "description": "Save the screenshot to disk instead of returning it inline. You will NOT see the image; the response gives a reusable handle (local path in stdio, single-use GET URL over HTTP) exactly like a download — reuse it with uploadFile or hand it to the user. Use when you only need the file later, not to look at now (see file-transfers).",
      +                "type": "boolean"
      +              },
      +              "type": {
      +                "description": "Image format. Default \"png\". Use \"jpeg\" for smaller payloads on large pages.",
      +                "enum": [
      +                  "jpeg",
      +                  "png",
      +                  "webp"
      +                ],
      +                "type": "string"
      +              },
      +              "waitForImages": {
      +                "description": "Wait for all images on the page to load before capturing",
      +                "type": "boolean"
      +              }
      +            },
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "uploadFile",
      +            "type": "string"
      +          },
      +          "params": {
      +            "properties": {
      +              "files": {
      +                "description": "Files to attach. Combined decoded size is capped (server default 10MB, hard max 50MB).",
      +                "items": {
      +                  "properties": {
      +                    "content": {
      +                      "description": "Base64-encoded file content. LAST RESORT — only for tiny data you already hold inline. Do NOT read a file into the conversation, and never split/reassemble base64 by hand: use `path` (stdio) or `handle` so the server moves the bytes.",
      +                      "type": "string"
      +                    },
      +                    "handle": {
      +                      "description": "A download handle from a prior getDownloads (a path in stdio mode, a `browserless-download://` URI in HTTP mode). The MCP server reads the stored file — works in both transports and keeps the bytes out of the conversation. Use this to re-upload a file you just downloaded.",
      +                      "type": "string"
      +                    },
      +                    "mimeType": {
      +                      "description": "MIME type; inferred from the extension when omitted.",
      +                      "type": "string"
      +                    },
      +                    "name": {
      +                      "description": "Filename reported to the page. Defaults to the basename of `path`, else \"file\".",
      +                      "type": "string"
      +                    },
      +                    "path": {
      +                      "description": "Local filesystem path to read and upload. stdio (local) mode only — the MCP server reads and base64-encodes it. In HTTP mode use `handle` or `content` instead.",
      +                      "type": "string"
      +                    }
      +                  },
      +                  "type": "object"
      +                },
      +                "minItems": 1,
      +                "type": "array"
      +              },
      +              "selector": {
      +                "description": "CSS selector of the <input type=\"file\"> element",
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "selector",
      +              "files"
      +            ],
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method",
      +          "params"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "getDownloads",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      },
      +      {
      +        "properties": {
      +          "method": {
      +            "const": "close",
      +            "type": "string"
      +          },
      +          "params": {
      +            "default": {},
      +            "properties": {},
      +            "type": "object"
      +          }
      +        },
      +        "required": [
      +          "method"
      +        ],
      +        "type": "object"
      +      }
      +    ]
      +  },
      +  {
      +    "properties": {
      +      "method": {
      +        "description": "The BQL method name",
      +        "type": "string"
      +      },
      +      "params": {
      +        "additionalProperties": {},
      +        "default": {},
      +        "description": "Parameters for the method",
      +        "propertyNames": {
      +          "type": "string"
      +        },
      +        "type": "object"
      +      }
      +    },
      +    "required": [
      +      "method"
      +    ],
      +    "type": "object"
      +  }
      +]
    • addedInput schema / properties / sessionId
      Added value: +{
      +  "description": "The `sessionId` returned by your previous browserless_agent call in this conversation. Echo it back on EVERY subsequent call — it binds this conversation to its live browser and its page state (current URL, cookies, filled forms, open tabs). Omit it only on the first call; omitting it later abandons the current browser and starts a blank one, losing everything the session had done. Only ever pass a value the server returned — never invent one.",
      +  "minLength": 1,
      +  "type": "string"
      +}
  4. First observedv1.16.0

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses far more than the annotations carry: an open session holds a concurrent browser and must be closed, proxy is read once at session creation and cannot be changed in-session, snapshots return diffs, credentials block captures until clearSecrets, and premature close discards page state. This richly supplements the sparse readOnlyHint/openWorldHint/destructiveHint annotations and does not contradict them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very long but extremely well structured: clear headers, a numbered core loop, bolded warnings, and a front-loaded 'READ CAREFULLY' note about recipes and closing. Most sentences carry operational value, though some repetition occurs (e.g., snapshot-first and 'don't read file bytes' appear multiple times), so it is not as concise as ideal.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 14 parameters, nested objects, and dozens of methods, the description is remarkably complete even without an output schema. It covers snapshot diff/full semantics, error categories, file-transfer behavior in both stdio and HTTP modes, batching rules, and the runtime mode, so an agent has the operational detail needed to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Even with 100% schema description coverage, the description adds critical parameter semantics not inferable from the schema: proxy must be a top-level argument on the first call and never a method inside commands, sessionId must be echoed on every subsequent call, profile must be passed on every call or it falls back to an un-hydrated session, and rationale has a strict 50-character present-continuous format. These constraints materially change how an agent must invoke the tool.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The opening sentence, 'Execute browser commands in persistent agent session,' states a specific verb, resource, and the persistent-session characteristic that separates it from one-shot sibling tools like browserless_search or browserless_crawl. The rest of the description reinforces this with the ReAct core loop, snapshot-first workflow, and explicit session-close rules, leaving no ambiguity about what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives strong contextual guidance: check a site recipe via browserless_skill before goto, snapshot before interacting, close by default when the task is done, and ask only when follow-up in the same browser is likely. It names browserless_skill as an alternative for recipes, but it never explicitly says when to prefer sibling tools like browserless_search or browserless_crawl over this agent, so exclusions are incomplete.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/browserless/browserless-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server