attachment_list
Retrieve a list of file attachments for a task or project, returning metadata such as name, type, size, and date added.
Instructions
List all file attachments on a task or project. Do not use to retrieve attachment content — use attachment_save_to_path instead. Returns { attachments } — array of objects with id, name, mimeType, sizeBytes, addedAt, and kind (embedded|alias). Provide exactly one of taskId or projectId. Read-only; safe to retry. Example: attachment_list({ taskId: "abc123" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | No | Persistent ID of the task that owns the attachment. Provide exactly one of taskId or projectId. | |
| projectId | No | Persistent ID of the project that owns the attachment. Provide exactly one of taskId or projectId. |