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
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The starting URL to crawl, e.g. “https://example.com”. |
maxPages | number | no | Maximum number of pages to crawl. Default 10. |
followLinks | boolean | no | Whether to follow links found on crawled pages. Default true. |
_apiKey | string | yes | Hyperbrowser 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.