hyperbrowser_crawl

Pack: hyperbrowser · Endpoint: https://gateway.pipeworx.io/hyperbrowser/mcp

Crawl a website starting from a URL, following links and scraping each page to markdown. Use maxPages to bound the crawl. Example: hyperbrowser_crawl({ url: “https://example.com”, maxPages: 10, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
urlstringyesThe starting URL to crawl, e.g. “https://example.com”.
maxPagesnumbernoMaximum number of pages to crawl. Default 10.
followLinksbooleannoWhether to follow links found on crawled pages. Default true.
_apiKeystringyesHyperbrowser API key. Sign up at https://app.hyperbrowser.ai (docs: https://docs.hyperbrowser.ai/).

Example call

Arguments

{
  "url": "https://example.com",
  "maxPages": 10,
  "_apiKey": "your-hyperbrowser-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/hyperbrowser/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"hyperbrowser_crawl","arguments":{"url":"https://example.com","maxPages":10,"_apiKey":"your-hyperbrowser-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('hyperbrowser_crawl', {
  "url": "https://example.com",
  "maxPages": 10,
  "_apiKey": "your-hyperbrowser-api-key"
});

More examples

{
  "url": "https://docs.example.com",
  "maxPages": 50,
  "followLinks": true,
  "_apiKey": "your-hyperbrowser-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "hyperbrowser": {
      "url": "https://gateway.pipeworx.io/hyperbrowser/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026