apple-notifier-mcp

take_screenshot

Take a screenshot using macOS screencapture

Input Schema

NameRequiredDescriptionDefault
formatNoImage format
hideCursorNoWhether to hide the cursor
pathYesPath where to save the screenshot
shadowNoWhether to include the window shadow (only for window type)
timestampNoTimestamp to add to filename
typeYesType of screenshot to take

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "format": { "description": "Image format", "enum": [ "png", "jpg", "pdf", "tiff" ], "type": "string" }, "hideCursor": { "description": "Whether to hide the cursor", "type": "boolean" }, "path": { "description": "Path where to save the screenshot", "type": "string" }, "shadow": { "description": "Whether to include the window shadow (only for window type)", "type": "boolean" }, "timestamp": { "description": "Timestamp to add to filename", "type": "boolean" }, "type": { "description": "Type of screenshot to take", "enum": [ "fullscreen", "window", "selection" ], "type": "string" } }, "required": [ "path", "type" ], "type": "object" }