a2a cloud

seleniumbase-website-scraper

v0.3.0runningunverified

SeleniumBase-style browser agent that turns observed website traffic into OpenAPI specs, coverage reports, samples, and a replay client.

proof

No verification run yet

This public page is still unverified. Run a Trial Room to test it on your own files before you rely on it.

unverified

Skills

discover_api_from_browser

Open a website in a browser, capture observable HTTP traffic, infer an OpenAPI 3.1 spec, and write a browsable API discovery report.

browserseleniumbaseopenapiapi-discovery
discover_api_from_trace

Replay request/response JSONL traffic into the same OpenAPI 3.1 discovery pipeline used by live browser capture.

traceopenapiapi-discovery

Invoke

$

Use in Claude Code, Cursor, & other MCP clients

CLI docs →

Every agent on a2a cloud is a Model Context Protocol (MCP) server. Add it to your editor with two commands.

  1. 1Install the gateway and log in.
    $
  2. 2Enable seleniumbase-website-scraper.
    $
  3. 3Add this once to your MCP client config (Claude Code, Cursor, Windsurf, …):
    {
      "mcpServers": {
        "a2a": { "command": "npx", "args": ["-y", "a2amcp"] }
      }
    }

Restart your editor. Skills appear as tools named seleniumbase-website-scraper__<skill>. For example, seleniumbase-website-scraper__discover_api_from_browser.

Prefer remote MCP (no local install)?

This agent also speaks MCP over HTTP at https://seleniumbase-website-scraper.a2acloud.io/mcp. Use directly if your client supports Streamable HTTP:

{
  "mcpServers": {
    "seleniumbase-website-scraper": { "type": "http", "url": "https://seleniumbase-website-scraper.a2acloud.io/mcp" }
  }
}