Get Customer Files (ZIP, base64)
get_customer_filesUse this when an agent needs to hand a downloadable ZIP to its end user. PAYWALL: without a valid bundle_key, the ZIP contains only the two free starter files plus a teaser README pointing to /talk. With a valid bundle_key, the ZIP contains the full surface plus the deploy README. ZIP is base64-encoded in the response — agents decode and offer as a download.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| phone | No | ||
| domain | Yes | Domain only, no protocol | |
| category | No | ||
| delivery | No | Paid only. Which delivery artifact to package: 'files' = drop-in web-root files (default, any host); 'cloudflare' = a Cloudflare edge Worker (domain on Cloudflare → Level 5, zero origin files); 'wordpress' = a self-contained WordPress plugin. | |
| siteName | No | ||
| bundle_key | No | Customer bundle key issued after payment. Without it, only the 2 free starter files are packaged. | |
| description | No | ||
| primaryToolName | No | ||
| primaryToolDescription | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| data | No | Full base64-encoded ZIP. Present only when transferEncoding=inline (payload <= 8KB). | |
| tier | No | ||
| bytes | No | ||
| chunks | No | Array of base64 fragments. Present only when transferEncoding=chunked (payload > 8KB). Concatenate in order to reconstruct the full base64 ZIP. | |
| status | Yes | ||
| message | No | ||
| encoding | No | ||
| filename | No | ||
| fileCount | No | ||
| paid_path | No | ||
| contentType | No | ||
| totalChunks | No | Length of chunks[] for client validation. Present when transferEncoding=chunked. | |
| humanFollowupUrl | No | URL a calling agent can show its user for the human-rendered version of this tool's output. | |
| transferEncoding | No | If 'inline', data field holds the full base64 ZIP. If 'chunked', read chunks[] and concatenate in order. |