Home / MCP Tools / Browse Discover
Live MCP toolbrowser

Browse Discover

Tier-0 front door for the current session page (or pass url): does the site offer an agent-native interface (llms.txt / OpenAPI / ai-plugin)? Prefer it over scraping.

Metered access — free-key quota or x402 pay-per-call (USDC on Base). Details at /pricing.

Parameters

ParameterTypeRequiredDescription
browser_idstringrequiredfrom browse_open
urlstringoptionaloptional: probe this url instead of the current page

Call it over MCP (JSON-RPC 2.0)

curl -s https://wingmanprotocol.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "browse_discover", "arguments": {"browser_id": "example-id"}}}'

Or plain HTTP

curl -s https://wingmanprotocol.com/tools/browse_discover \
  -H 'Content-Type: application/json' \
  -d '{"browser_id": "example-id"}'

Try it live

Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/browse_discover from your browser.

Related tools in Browser

browser
Browse
Navigate to a URL and return status + any anti-bot challenge + the page as markdown.
browser
Browse Back
Navigate the session back one page (browser history).
browser
Browse Click
Click an element by its @eN ref from the last browse_snapshot.
browser
Browse Close
Close a browser session and free its resources (do this when you finish
browser
Browse Evaluate
Run JavaScript in the current page and return its result — powerful: extract complex data or drive JS widgets the…
browser
Browse Extract
Deterministic structured extraction from the current page: {name: css_selector} -> {name: text}.