Smithery

screenshot_fullpage

Capture a full-page screenshot (entire scrollable content) of any URL. Use max_height to cap extremely long pages and prevent unreadable strips.

Remote relievedattention992-smithery/screenshotsmcp

Other tools also called screenshot_fullpage? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL to screenshot"
    },
    "width": {
      "type": "integer",
      "default": 1280,
      "maximum": 3840,
      "minimum": 320,
      "description": "Viewport width in pixels"
    },
    "format": {
      "enum": [
        "png",
        "jpeg",
        "webp"
      ],
      "type": "string",
      "default": "png",
      "description": "Image format"
    },
    "maxHeight": {
      "type": "integer",
      "maximum": 20000,
      "minimum": 100,
      "description": "Maximum image height in pixels. Caps extremely tall full-page captures."
    }
  }
}