clickup_attachment_upload
Upload local files to ClickUp tasks by specifying file paths and task IDs, storing attachments on ClickUp's CDN for organized task management.
Instructions
Upload a local file as an attachment on a ClickUp task. The file is read from disk, posted as multipart/form-data, and stored on ClickUp's CDN. Use clickup_attachment_list to see attachments afterward. Returns the created attachment object (id, title, size, url).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Absolute path to a readable file on the server running this MCP. The filename (basename) is used as the attachment title; size limits apply per workspace plan. | |
| task_id | Yes | ID of the task to attach the file to. Obtain from clickup_task_list (field: id). |