Render

capture_screenshot

Use this when you need a visual capture of a web page. Renders in a real Chromium browser and returns an image. Returns: 1. Binary image (PNG, JPEG, or WebP) 2. Custom viewport support (width/height

Remote axel-belfort/screenshot-pdf

Other tools also called capture_screenshot? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "URL to screenshot (e.g. https://example.com)"
    },
    "width": {
      "type": "number",
      "description": "Viewport width in px (default: 1280)"
    },
    "format": {
      "enum": [
        "png",
        "jpeg",
        "webp"
      ],
      "type": "string",
      "description": "Image format (default: png)"
    },
    "height": {
      "type": "number",
      "description": "Viewport height in px (default: 720)"
    },
    "fullPage": {
      "type": "boolean",
      "description": "Capture full scrollable page (default: false)"
    }
  }
}
          

Provider

Render →