Download Basecamp Blob
basecamp_download_blobDownload inline attachments from Basecamp documents, messages, or comments. Extract blob_id and filename from bc-attachment href to retrieve image or text content directly.
Instructions
Download an inline attachment from a tag found in document/message/comment HTML content. Extract the blob_id and filename from the href attribute (format: https://storage.3.basecamp.com/{accountId}/blobs/{blobId}/download/{filename}). For images, returns the image content that the LLM can see directly. For text-based files, returns the file content as text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| blob_id | Yes | Blob UUID extracted from the <bc-attachment> href URL | |
| filename | Yes | Filename extracted from the <bc-attachment> href URL (URL-decoded) | |
| content_type | No | Content type from the <bc-attachment> content-type attribute (e.g. "image/png"). If not provided, will attempt to infer from filename. |