browserless_content

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

Render a URL in headless Chromium and return the fully-executed HTML (after JavaScript runs) — use this when a plain fetch returns an empty shell or JS-rendered SPA. Example: browserless_content({ url: “https://example.com”, _apiKey: “your-token” })

Parameters

NameTypeRequiredDescription
urlstringyesThe page URL to render, e.g. “https://example.com
waitForTimeoutnumbernoOptional milliseconds to wait after load before capturing HTML (lets late JS settle), e.g. 3000
_apiKeystringyesBrowserless API token (sign up at https://www.browserless.io/signup)
_hoststringnoOptional region host override, default “https://production-sfo.browserless.io

Example call

Arguments

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

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "url": "https://example.com/spa-page",
  "waitForTimeout": 3000,
  "_apiKey": "your-browserless-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026