hyperbrowser_extract

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

Extract structured JSON data from one or more web pages using an LLM. Provide a JSON schema and/or a natural-language prompt describing what to pull. Example: hyperbrowser_extract({ urls: [“https://example.com”], prompt: “Get the product name and price”, schema: { type: “object”, properties: { name: { type: “string” }, price: { type: “string” } } }, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
namestringno
pricestringno

Example call

Arguments

{
  "urls": [
    "https://example.com/product"
  ],
  "prompt": "Extract the product name, price, and availability status",
  "_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_extract","arguments":{"urls":["https://example.com/product"],"prompt":"Extract the product name, price, and availability status","_apiKey":"your-hyperbrowser-api-key"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('hyperbrowser_extract', {
  "urls": [
    "https://example.com/product"
  ],
  "prompt": "Extract the product name, price, and availability status",
  "_apiKey": "your-hyperbrowser-api-key"
});

More examples

{
  "urls": [
    "https://example.com/listing1",
    "https://example.com/listing2"
  ],
  "schema": {
    "type": "object",
    "properties": {
      "title": {
        "type": "string"
      },
      "price": {
        "type": "string"
      },
      "rating": {
        "type": "number"
      }
    }
  },
  "_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