hyperbrowser_scrape
Pack: hyperbrowser · Endpoint: https://gateway.pipeworx.io/hyperbrowser/mcp
Scrape a single web page from a cloud browser and return clean content (markdown, html, links, and page metadata). Handles JS-rendered pages. Example: hyperbrowser_scrape({ url: “https://example.com”, _apiKey: “your-key” })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The full URL to scrape, e.g. “https://example.com/page” |
onlyMainContent | boolean | no | If true, strip nav/footer/ads and return only the main article content. Default true. |
formats | array | no | Output formats to include. Any of “markdown”, “html”, “links”. Default [“markdown”]. |
items | string | no | |
_apiKey | string | yes | Hyperbrowser API key. Sign up at https://app.hyperbrowser.ai (docs: https://docs.hyperbrowser.ai/). |
Example call
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_scrape","arguments":{}}}'
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.