Smithery

screenshot_element

Capture a screenshot of a specific element on the page by CSS selector. Only the matched element is captured, not the full page. Automatically waits for the element to appear (SPA-friendly). Use delay for pages that need extra hydration time.

Remote relievedattention992-smithery/screenshotsmcp

Other tools also called screenshot_element? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "format": "uri",
      "description": "The URL to screenshot"
    },
    "delay": {
      "type": "integer",
      "default": 0,
      "maximum": 10000,
      "minimum": 0,
      "description": "Extra wait in ms after page load before capturing. Use 2000-5000 for SPAs that need hydration time."
    },
    "format": {
      "enum": [
        "png",
        "jpeg",
        "webp"
      ],
      "type": "string",
      "default": "png",
      "description": "Image format"
    },
    "selector": {
      "type": "string",
      "description": "CSS selector of the element to capture (e.g. '#hero', '.pricing-table', 'main > section:first-child')"
    }
  }
}