mcp_write
Write, update, delete, move, or organize items in the CopyQ clipboard manager's structured tabs for storing text, notes, and tags.
Instructions
Write to CopyQ clipboard manager.
IMPORTANT: All data stored under "mcp/" prefix. When you use tab="info", actual CopyQ path is "mcp/info".
Available tabs:
info - general storage (use tab="info")
заметки - notes (use tab="заметки")
workspace - projects, supports subtabs (use tab="workspace" or "workspace/myproject")
Modes:
add: Add item to tab. Params: tab, text, tags (optional), note (optional)
update: Update item. Params: tab, index, field, text/tags/note
delete: Delete item. Params: tab, index
move: Move item. Params: tab, index, to_tab
tab_create: Create subtab in workspace only. Params: path (e.g. "workspace/newproject")
tab_delete: Delete subtab. Params: path
Response shows full_path (e.g. "mcp/info") confirming where data was written.
Errors: TAB_NOT_FOUND, INDEX_OUT_OF_BOUNDS, PERMISSION_DENIED, MISSING_PARAM
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | Yes | Operation mode | |
| tab | No | Tab path | |
| index | No | Item index | |
| text | No | Text content | |
| tags | No | Tags list | |
| note | No | Note content | |
| field | No | Field to update | |
| edit_mode | No | replace | |
| match | No | String to match (for substitute) | |
| to_tab | No | Destination tab (for move) | |
| path | No | Tab path (for tab_create/tab_delete) | |
| intent | No | execute |