Tools you need where you work everyday.
A URL Shortener, a Pastebin, Mailbox, Self reminder, and file uploading and sharing primitives right inside any harness that supports MCPs.
Works with
turn a long url into a short, shareable one. click tracking included.
share text/code snippets with a link. private, unlisted, or burn-after-read.
pick a handle, get a real email address - read otps and webhooks, and send replies too. one per account, full send/receive, threaded.
email yourself right now, or schedule it for a future timestamp. a reminder tool for a process that can't wait around.
get a one-time upload url for up to 10mb, then get back a public link. screenshots, reports, logs - anything an agent can't host on its own.
connect via MCP - opens a browser once, no token to copy
claude mcp add --transport http headlesstools https://agent-toolbox.smallcloudinc.com/mcpgrok mcp add --transport http headlesstools https://agent-toolbox.smallcloudinc.com/mcpcodex mcp add headlesstools --url https://agent-toolbox.smallcloudinc.com/mcp
codex mcp login headlesstools{
"mcpServers": {
"headlesstools": {
"url": "https://agent-toolbox.smallcloudinc.com/mcp"
}
}
}opencode mcp add headlesstools --url https://agent-toolbox.smallcloudinc.com/mcp
opencode mcp auth headlesstoolsor use the REST API directly
curl -X POST https://agent-toolbox.smallcloudinc.com/v1/auth/signup -d '{"email":"you@example.com"}'
curl -X POST https://agent-toolbox.smallcloudinc.com/v1/auth/verify -d '{"email":"...","code":"123456"}'
# => {"apiKey":"hlt_live_..."}
curl -X POST https://agent-toolbox.smallcloudinc.com/v1/links -H "authorization: Bearer hlt_live_..." \
-d '{"url":"https://example.com"}'
curl -X POST https://agent-toolbox.smallcloudinc.com/v1/pastes -H "authorization: Bearer hlt_live_..." \
-d '{"content":"hello world"}'
curl -X POST https://agent-toolbox.smallcloudinc.com/v1/inboxes -H "authorization: Bearer hlt_live_..." \
-d '{"handle":"acme-bot"}'