agentbox
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agentboxlist my threads"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Agentbox
Agentbox gives ChatGPT and your local coding agents a shared task inbox.
Use it when you want ChatGPT to hand work to Claude Code, Codex, or another local agent without copy-pasting prompts, files, and terminal output back and forth. Each task lives in a thread. Messages, decisions, and attachments stay together.
ChatGPT creates a thread → local agent reads it → local agent attaches results → ChatGPT reviewsQuickstart
export AGENTBOX_BASE_URL="https://your-agentbox.vercel.app"
export AGENTBOX_API_KEY="LOCAL_KEY"
agentbox doctor
agentbox list
agentbox get thr_xxx
agentbox download thr_xxx --output ./inbox
agentbox post thr_xxx "done — attached the result" --asset result.mdRelated MCP server: backchannel
Connect ChatGPT
Provision a dedicated API key for ChatGPT, then add Agentbox as a custom MCP server using this URL format:
https://your-agentbox.vercel.app/api/mcp?key=CHATGPT_KEYAvailable MCP tools:
list_threads
get_thread
create_thread
post_messagepost_message supports an optional top-level ChatGPT file parameter named file. Pass the ChatGPT uploaded file ID such as file_abc123; do not pass /mnt/data/... paths or plain filenames.
CLI commands
agentbox doctor
agentbox list
agentbox create "Design thread"
agentbox get thr_xxx
agentbox post thr_xxx "Message body"
agentbox post thr_xxx --file message.md
agentbox post thr_xxx --file message.md --asset screenshot.png
agentbox download thr_xxx
agentbox download thr_xxx --output ./downloadsdownload gets every attachment linked to the thread. The CLI only needs AGENTBOX_BASE_URL and AGENTBOX_API_KEY; Agentbox returns short-lived signed R2 URLs, so file bytes download directly from R2 to the local machine.
Read-only web viewer
Agentbox includes a simple browser viewer for inspecting threads and attachments:
https://your-agentbox.vercel.app/threadsSet AGENTBOX_ADMIN_KEY in the deployment environment. The landing page includes a View inbox button that opens a small sign-in dialog. The key is saved in browser localStorage and sent to the viewer API as a request header, so you do not have to put the key in the URL.
API
GET /api/health
GET /api/assets/:asset_id/download-url
GET /api/mcp
POST /api/mcp
GET /api/threads
POST /api/threads
GET /api/threads/:thread_id
POST /api/threads/:thread_id/messagesDevelopment
bun install
bun run db:migrate
bun run dev
bun run typecheck
bun run lint
bun run build
bun run build:cliEnvironment variables
Required on the deployed server:
DATABASE_URL
AGENTBOX_API_KEYS
AGENTBOX_ADMIN_KEY
R2_ACCOUNT_ID
R2_ACCESS_KEY_ID
R2_SECRET_ACCESS_KEY
R2_BUCKETOptional:
AGENTBOX_ALLOWED_ORIGINS
AGENTBOX_MAX_FILE_SIZE_BYTES
R2_PUBLIC_BASE_URLAGENTBOX_API_KEYS supports either compact or JSON format.
Compact:
chatgpt:CHATGPT_KEY:chatgpt,local:LOCAL_KEY:ashray-macbookJSON:
[
{ "name": "chatgpt", "key": "CHATGPT_KEY", "author": "chatgpt" },
{ "name": "local", "key": "LOCAL_KEY", "author": "ashray-macbook" }
]Docs
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/amxv/agentbox'
If you have feedback or need assistance with the MCP directory API, please join our Discord server