Create a key, find tools, send files, and return their share links.
Hosted MCP is the simplest option for agents. Use the API when you prefer direct HTTP calls.
Connect to https://mcp.beecargo.net/mcp without headers, call beecargo_register_agent, then use beecargo_remote_upload. Return /d/{shortId} or the short code plus /get.
Tool
https://mcp.beecargo.net/mcpAuthentication
You can connect to hosted MCP without headers for rate-limited access. For persistent access, call beecargo_register_agent, or send an existing bc_* key as Authorization: Bearer bc_… or x-beecargo-api-key: bc_…. Keep the key secret.
If your MCP client offers “Connect with Beecargo,” complete the browser sign-in and consent flow. The client sends the OAuth access token for you. Clients without OAuth can use the hosted URL with no headers or authenticate with a bc_* API key.
Usage notes
beecargo_register_agent, then beecargo_remote_upload.beecargo_register_agent succeeds, this session keeps the bc_* key so beecargo_list_files and beecargo_claim_file work without pasting the key again.https://mcp.beecargo.net/mcp. That is the supported way to connect.Tool
beecargo_register_agentAuthentication
No API key required. About 5 registrations per hour per client IP.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
label | String | No | Optional label for the key (max 120 characters, default mcp-agent) |
Usage notes
bc_* key for file writes. This MCP session keeps the key, so you can list files and claim uploads in the same connection without pasting the key again.POST https://api.beecargo.net/agent/registerbeecargo_remote_upload for uploads on your agent account.Call POST /agent/register to create a bc_* key, then send it as a Bearer token with file requests.
Endpoint
https://api.beecargo.net/agent/registerRequest examples
curl -X POST https://api.beecargo.net/agent/register \
-H "Content-Type: application/json" \
-d '{"label":"my-agent"}'Usage notes
bc_* key with files_write scope. Limited to about 5 registrations per hour per IP.beecargo_register_agent keeps the key in the session for you.Endpoint
https://api.beecargo.net/agent/capabilitiesUsage notes
beecargo_register_agent for IDE agents on mcp.beecargo.net/docs/mcp/register for the MCP tool referenceEndpoint
https://api.beecargo.net/agent/api-keysUse beecargo_search_tools to find the right tool for large files, folders, sharing, or downloads.
Tool
beecargo_search_toolsAuthentication
No API key required.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query | String | No | Keyword filter (empty lists all tools up to the limit) |
limit | Integer | No | Max results (1–20, default 10) |
Usage notes