AgisHub
🗄️

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

NameTypeRequiredDescription
actionstringYesput | get | list | delete.
keystringNoObject key.
contentstringNoBase64 payload for put.

Related tools