clipboard_get_clipboard
Retrieve clipboard content from macOS, specifying text or file paths, using AppleScript integration for LLM applications.
Instructions
[Clipboard management operations] Get current clipboard content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | No | Type of clipboard content to get | text |
Input Schema (JSON Schema)
{
"properties": {
"type": {
"default": "text",
"description": "Type of clipboard content to get",
"enum": [
"text",
"file_paths"
],
"type": "string"
}
},
"type": "object"
}