browser_screenshot
Capture screenshots of web pages or specific elements using CSS selectors for detailed analysis during penetration testing on the MCP Server Pentest platform.
Instructions
Take a screenshot of the current page or a specific element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fullPage | No | Take a full page screenshot (default: false) | |
name | Yes | Name for the screenshot | |
selector | No | CSS selector for element to screenshot |
Input Schema (JSON Schema)
{
"properties": {
"fullPage": {
"default": false,
"description": "Take a full page screenshot (default: false)",
"type": "boolean"
},
"name": {
"description": "Name for the screenshot",
"type": "string"
},
"selector": {
"description": "CSS selector for element to screenshot",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}