zyte_screenshot

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

Capture a screenshot of a web page via Zyte API (rendered in a headless browser). Returns metadata about the base64-encoded PNG (its length) rather than inlining the full blob. Example: zyte_screenshot({ url: “https://example.com”, _apiKey: “your-key” })

Parameters

NameTypeRequiredDescription
urlstringyesThe URL to screenshot
_apiKeystringyesZyte API key

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_screenshot","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_screenshot', {
  "url": "https://example.com",
  "_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