screenshot_local_files
Capture screenshots of HTML files stored in a local directory, with options to specify file patterns, full-page capture, and grid sizing for organized output using AI Vision Debug MCP Server.
Instructions
Take screenshots of local HTML files in a directory
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| directory | No | Directory containing HTML files to screenshot (defaults to current directory) | |
| fullPage | No | Whether to capture full page or just viewport. Default: false | |
| gridSize | No | Size of grid (2 for 2x2, 4 for 4x4). Default: 2 | |
| pattern | No | Glob pattern to match HTML files (default: "*.html") | 
Input Schema (JSON Schema)
{
  "properties": {
    "directory": {
      "description": "Directory containing HTML files to screenshot (defaults to current directory)",
      "type": "string"
    },
    "fullPage": {
      "description": "Whether to capture full page or just viewport. Default: false",
      "type": "boolean"
    },
    "gridSize": {
      "description": "Size of grid (2 for 2x2, 4 for 4x4). Default: 2",
      "type": "number"
    },
    "pattern": {
      "description": "Glob pattern to match HTML files (default: \"*.html\")",
      "type": "string"
    }
  },
  "required": [],
  "type": "object"
}