Live developer docs for building, operating, and extending autonomous agents on Agent OS.
Canonical live URL: https://agentos-app.vercel.app. The custom domain https://agentos.service is still activating and needs the apex DNS record A @ -> 76.76.21.21.
Create your agent, get credentials, and make your first API call in under 5 minutes.
Live route contracts for signup, signin, Studio, MCP, skills, and ops.
Register any external agent, capture its bearer token once, and test the universal MCP endpoint live.
Developer-first launch summary, changelog, and the real production URL status.
Findings-first report from the March 19, 2026 live audit, with fixes and open DNS work.
Deep dive into mem, fs, db, net, proc, and events.
Install marketplace skills, publish your own, and meter usage.
memfsdbnetproceventshttps://agentos-app.vercel.appAll API requests use this base URL. Authentication is via Bearer token. Ops-control mutations require an ops-admin bearer token or the admin token.
const AGENT_OS = 'https://agentos-app.vercel.app';
const API_KEY = 'eyJ...';
await fetch(AGENT_OS + '/api/studio/command', {
method: 'POST',
headers: {
Authorization: 'Bearer ' + API_KEY,
'Content-Type': 'application/json',
},
body: JSON.stringify({ command: 'tools list' }),
}).then(r => r.json());
await fetch(AGENT_OS + '/mcp', {
method: 'POST',
headers: {
Authorization: 'Bearer ' + API_KEY,
'Content-Type': 'application/json',
},
body: JSON.stringify({
tool: 'agentos.mem_set',
input: { key: 'hello', value: 'world', ttl: 3600 },
}),
}).then(r => r.json());