clipboard_set
Copies text to the Windows clipboard for immediate pasting. Use it to transfer command output or automate copy-paste workflows.
Instructions
Copy text to the Windows system clipboard so the user can immediately paste it (Ctrl+V) in any application. The clipboard is the temporary storage area for copy/paste operations. Use cases: copy command output to the clipboard, transfer text between applications, or automate copy-paste workflows. Requires the 'text' parameter with the content to copy.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | The text to copy to the clipboard. Example: 'npm install --save' |