Developers

Build with Atako

A REST API, an MCP server, and machine-readable files to connect your own tools and AI agents to the Atako platform.

Get an API key

API keys (prefix aik_) grant full programmatic access to their owner's account — restricted to company admins.

  1. 1Sign in at app.atako.ai
  2. 2Open Settings, then the API keys tab
  3. 3Click Create a key and give it a name
  4. 4Copy the aik_… key shown once — it is never shown again after this

Only company admins can create or revoke a key.

REST API

Every API route accepts an aik_ key in the Authorization header, exactly like a user session token.

Base URL

https://api.atako.ai

Authentication

Authorization: Bearer aik_your_key on every request.

Examples

List your agents

curl https://api.atako.ai/agents \
  -H "Authorization: Bearer aik_..."

Create an agent

curl https://api.atako.ai/agents \
  -H "Authorization: Bearer aik_..." \
  -H "Content-Type: application/json" \
  -d '{"name":"Support Agent","image":"aiygent-transp-1.png"}'

Send a message to an agent

curl https://api.atako.ai/agents/AGENT_ID/messages \
  -H "Authorization: Bearer aik_..." \
  -H "Content-Type: application/json" \
  -d '{"content":"Hello!"}'

The Atako MCP server

A Model Context Protocol server so Claude Code, Claude Desktop, Cursor or ChatGPT can read an Atako account's agents, activity and billing directly.

Endpoint

https://api.atako.ai/mcp

Installation

Claude Code

claude mcp add --transport http atako https://api.atako.ai/mcp \
  --header "Authorization: Bearer aik_..."

Cursor

{
  "mcpServers": {
    "atako": {
      "url": "https://api.atako.ai/mcp",
      "headers": {
        "Authorization": "Bearer aik_..."
      }
    }
  }
}

Claude Desktop

{
  "mcpServers": {
    "atako": {
      "url": "https://api.atako.ai/mcp",
      "headers": {
        "Authorization": "Bearer aik_..."
      }
    }
  }
}

ChatGPT (developer mode)

In ChatGPT's developer settings, add a custom MCP connector with this URL and an Authorization Bearer header carrying your key.

URL: https://api.atako.ai/mcp
Authentication: Authorization: Bearer aik_...

Public endpoint

/mcp/public exposes 3 marketing tools (pricing, use cases, integration catalog) with no authentication required.

https://api.atako.ai/mcp/public

get_pricing, list_use_cases, list_integration_pages

30 read and write tools, grouped by domain

Agents

list_agents, get_agent, whoami, create_agent, update_agent_name, end_agent, resume_agent, cancel_agent_provisioning, retry_agent_provisioning

Messages & activity

list_messages, send_message, wait_for_reply, list_activity, get_activity_state, list_interagent_messages, list_sub_agents, list_cron_jobs

Files

list_agent_files, upload_file_to_agent

Integrations

list_integration_catalog, list_integration_connections, list_agent_integration_grants, create_integration_connection, get_connect_url, grant_integration_to_agent, revoke_integration_grant

Billing & platform

get_credits, get_subscription, list_models, list_harnesses

The server can also pilot your agents: create an agent, send it a message and wait for the reply, upload a file to it, and connect or revoke an integration.

OAuth connections (Gmail, Slack, HubSpot…) and payments still need a browser — an agent cannot complete them on its own via MCP.

Machine-readable resources

Every piece of public content on this site is also published in formats built for agents and AI crawlers.

Deploy your first AI agents

Create your account for free and launch an agent in minutes, no code required.