zyte_fetch

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

Fetch a web page through Zyte API and return its content. By default returns the raw HTTP response body (decoded to text). For JS-heavy sites that need a real browser, pass render:true to get browser-rendered HTML instead. Example: zyte_fetch({ url: “https://example.com”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
urlstringyesThe URL to fetch, e.g. “https://example.com
renderbooleannoWhen true, load the page in a headless browser and return the rendered HTML (browserHtml). Use for JavaScript-heavy sites. Default false (fast raw HTTP fetch).
_apiKeystringyesZyte API key (get one at https://app.zyte.com)

Example call

Arguments

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

curl

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

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "url": "https://example.com/spa-app",
  "render": true,
  "_apiKey": "your-zyte-api-key"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026