clipboard_set_clipboard
Copy specified content to the clipboard on macOS using AppleScript integration with MCP server, enabling clipboard management for LLM applications.
Instructions
[Clipboard management operations] Set clipboard content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content to copy to clipboard |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content to copy to clipboard",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}