https://api.atako.ai/mcp, so an AI client you already use — Claude Code, Claude
Desktop, Cursor, ChatGPT developer mode, or any other MCP client — can read and
act on your Atako account directly: your agents, their chat history and files,
integration connections, activity, credits, and subscription.
Most tools read existing state. Some now write too: create, rename, end, and resume
agents; send a message and wait for the reply; upload a file to an agent; connect an
integration and grant it to an agent. Two things still need you in a browser — an
OAuth integration connection needs your consent on the provider’s own page, and any
billing/subscription change happens on app.atako.ai — no
tool can do either for you.
Connecting
You need a programmatic API key (aik_…) from
Settings → API keys. Point your MCP client at the URL below with that key as a
Bearer token:
Try it
Some things you can ask, once connected:- “List my Atako agents and tell me which ones are idle.”
- “Create an agent that triages my Zendesk tickets and drafts replies.”
- “Send my support agent a message asking for today’s ticket count, and wait for its reply.”
- “Connect my GitHub token and grant it to my engineering agent, read-only.”
- “What’s my credit balance and how many agent seats do I have left?”
Tools
Read
Write
A public, unauthenticated endpoint at
https://api.atako.ai/mcp/public also exposes
3 marketing tools with no API key required — get_pricing, list_use_cases, and
list_integration_pages — useful for an assistant researching Atako itself rather
than acting on your account.
Scheduling and delegation are agent-authored
There’s nocreate_cron_job or create_sub_agent tool, on purpose: an agent
schedules its own recurring tasks and spawns its own sub-agents while it works, in
response to being asked in a normal conversation — not through a separate creation
API. Tell the agent what you want (“every Monday at 9am, check X and send me a
summary”) and then use list_cron_jobs to confirm what it set up and inspect its
run history.
Two things still need a browser
- OAuth integrations —
get_connect_urlgets you the authorization URL, but finishing an OAuth consent screen needs you in an actual browser. For a provider that just needs a pasted API key/token instead,create_integration_connectionworks with no browser step at all. - Billing and subscription changes — there’s no MCP tool for this at all. Go to app.atako.ai → Settings → Billing.
Resources & prompts
- Resources:
atako://agents/{id}(same shape asget_agent),atako://agents/{id}/files(same shape aslist_agent_files), andatako://docs/quickstart(this product’s own quickstart guide, for a client that wants to ground itself in what Atako is before calling any tool). - Prompts:
diagnose_agent_issue(pulls an agent’s state, activity, and recent messages together to help figure out why it seems stuck),weekly_credits_report(a quick credits/subscription/agent-roster summary),create_support_agent_from_brief(turns a free-form description into a structuredcreate_agentcall), andconnect_integration_wizard(walks through connecting one provider end-to-end, picking the right tool for how it authenticates).