개발자

Atako로 구축하기

자체 도구와 AI 에이전트를 Atako 플랫폼에 연결할 수 있는 REST API, MCP 서버, 기계 판독 가능 파일.

API 키 발급받기

API 키(aik_ 접두사)는 소유자 계정에 대한 완전한 프로그래밍 방식 접근 권한을 부여하며, 회사 관리자만 발급할 수 있습니다.

  1. 1app.atako.ai에서 로그인하세요
  2. 2설정을 연 다음 API 키 탭을 선택하세요
  3. 3키 생성을 클릭하고 이름을 지정하세요
  4. 4한 번만 표시되는 aik_… 키를 복사하세요. 이후에는 다시 표시되지 않습니다

키 생성 및 폐기는 회사 관리자만 할 수 있습니다.

REST API

모든 API 경로는 사용자 세션 토큰과 마찬가지로 Authorization 헤더에서 aik_ 키를 받습니다.

기본 URL

https://api.atako.ai

인증

모든 요청에 Authorization: Bearer aik_your_key를 포함합니다.

예제

에이전트 목록 조회

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

에이전트 생성

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

에이전트에 메시지 보내기

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

Atako MCP 서버

Claude Code, Claude Desktop, Cursor 또는 ChatGPT가 Atako 계정의 에이전트, 활동, 청구 정보를 직접 읽을 수 있도록 하는 Model Context Protocol 서버입니다.

엔드포인트

https://api.atako.ai/mcp

설치

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(개발자 모드)

ChatGPT의 개발자 설정에서 이 URL과 API 키가 담긴 Authorization Bearer 헤더로 사용자 지정 MCP 커넥터를 추가하세요.

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

공개 엔드포인트

/mcp/public은 인증 없이 3가지 마케팅 도구(요금제, 사용 사례, 연동 카탈로그)를 제공합니다.

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

get_pricing, list_use_cases, list_integration_pages

영역별로 그룹화된 30개의 읽기·쓰기 도구

에이전트

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

메시지 및 활동

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

파일

list_agent_files, upload_file_to_agent

연동

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

청구 및 플랫폼

get_credits, get_subscription, list_models, list_harnesses

서버는 에이전트를 직접 조작할 수도 있습니다. 에이전트 생성, 메시지 전송 및 응답 대기, 파일 업로드, 연동 연결 또는 해제가 가능합니다.

OAuth 연동(Gmail, Slack, HubSpot 등)과 결제는 여전히 브라우저가 필요하며, 에이전트가 MCP만으로 단독 완료할 수 없습니다.

기계 판독 가능 리소스

이 사이트의 모든 공개 콘텐츠는 에이전트와 AI 크롤러를 위해 설계된 형식으로도 제공됩니다.

첫 AI 에이전트를 배포하세요

무료로 계정을 만들고 코드 없이 몇 분 만에 에이전트를 실행하세요.