clipboard_read_raw
Read raw clipboard content in specific MIME formats for diagnostic purposes. Use to access unparsed text, HTML, JSON, XML, or SVG data directly from the clipboard.
Instructions
Read raw clipboard content in a specific MIME format. Diagnostic tool only — use clipboard_paste instead for normal clipboard access.
This tool returns the clipboard content as-is without any parsing or restructuring. Use clipboard_list_formats first to see what MIME types are available.
Supports all text/* MIME types plus these text-readable types that have non-text prefixes: image/svg+xml, application/json, application/xml, application/xhtml+xml. Binary MIME types (image/png, audio/, video/, etc.) are rejected — use clipboard_paste for images.
Args: mime_type: The MIME type to read from the clipboard. Common values: "text/plain", "text/html", "image/svg+xml", "application/json"
Returns: The raw clipboard content in the requested format, or an error message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mime_type | No | text/plain |