get_screenshot
Retrieve specified screenshot file paths or base64-encoded content directly from Windows via WSL2, simplifying access and sharing without manual file navigation.
Instructions
Get a specific screenshot file path or content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | Full path to the screenshot file | |
return_content | No | Return base64 encoded content instead of just the path (default: false) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "Full path to the screenshot file",
"type": "string"
},
"return_content": {
"default": false,
"description": "Return base64 encoded content instead of just the path (default: false)",
"type": "boolean"
}
},
"required": [
"path"
],
"type": "object"
}