MCP Server
ONCE MCP gives your agent a single endpoint for release submission. Connect once, authenticate with your ONCE account, and you’re ready to upload assets and submit releases.
Getting Started
The fastest way to start is connecting an MCP client:
{
"mcpServers": {
"once": {
"url": "https://beta.once.app/api/mcp",
"transport": "http"
}
}
}Most clients will prompt for authentication as soon as they scan MCP methods. See Agent Setup for full configuration examples. You can also open MCP setup from your ONCE dashboard at MCP Settings, which includes recent releases you submitted through MCP.
How Tools + Resources Load
Most MCP clients do a quick scan as soon as you add the server:
initializetools/listresources/list- Sometimes
GET /.well-known/mcp/server-card.json
If the server responds with 401 Unauthorized, your MCP client should show an Authenticate / Sign in action. Complete that flow in the browser, then retry.
Tool/resource lists are static during a session (listChanged: false in the server card). If you don’t see new items after an update, restart your client or remove/re-add the server to force a refresh.
Key Features
- Native auth-first flow — Discovery and actions are available right after sign-in
- Native sign-in flow — MCP clients can trigger browser authentication through OAuth challenge responses
- Account-linked usage — MCP submissions debit credits from your ONCE balance
- Full workflow support — Upload, submit, and monitor releases entirely through the agent
Current Scope
- Releases are distributed to all stores (store selection coming soon)
- Accepts a subset of metadata fields compared to the ONCE app
- No validation agent or mastering in the MCP flow
Workflow
- Connect — Point your MCP client to
https://beta.once.app/api/mcp - Authenticate — Complete the MCP client sign-in flow (OAuth).
- Discover — Let the client load
tools/list+resources/list - Upload assets — Use
upload_filefor small local files,upload_file_from_urlfor public URLs, orprepare_local_file_uploadfor large local files in Claude Code / Cursor - Submit release — Call
submit_releasewith metadata, then poll status endpoints
Discovery
| Resource | Endpoint |
|---|---|
| MCP endpoint | POST /api/mcp |
| Server card | GET /.well-known/mcp/server-card.json |
| Docs endpoint | GET /api/mcp/docs |
MCP Resources
ONCE MCP exposes two read-only resources via resources/list and resources/read:
mcp://docs/agent-guide— Protocol guide (markdown)mcp://schemas/release-required— Required fields and example payload (JSON)
Authentication
All MCP JSON-RPC methods require authentication and trigger an OAuth sign-in challenge when needed.
Native MCP clients attach the bearer token automatically, so tool calls usually do not need an access_token argument.