| { | |
| "name": "browser_resize", | |
| "description": "Resize the browser window", | |
| "inputSchema": { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "type": "object", | |
| "properties": { | |
| "width": { | |
| "type": "number", | |
| "description": "Width of the browser window" | |
| }, | |
| "height": { | |
| "type": "number", | |
| "description": "Height of the browser window" | |
| } | |
| }, | |
| "required": [ | |
| "width", | |
| "height" | |
| ], | |
| "additionalProperties": false | |
| } | |
| } |