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
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The URL to fetch, e.g. “https://example.com” |
render | boolean | no | When 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). |
_apiKey | string | yes | Zyte API key (get one at https://app.zyte.com) |
Example call
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":{}}}'
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.