🗄️
File Store
Persistent storage for agent artifacts
🗂️ Data & FilesAPIMCPSDK
Overview
A simple, signed-URL object store so agents can save, read and share files across runs. Perfect for generated reports, intermediate state and multi-step workflows.
Call it from any agent
curl https://api.agishub.com/v1/tools/files \
-H "Authorization: Bearer $AGISHUB_KEY" \
-H "Content-Type: application/json" \
-d '{ "action": "put", "key": "report.md", "content": "..." }'Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| action | string | Yes | put | get | list | delete. |
| key | string | No | Object key. |
| content | string | No | Base64 payload for put. |