MCP Tools Reference

v1 · 26 tools

AxHub MCP 서버가 노출하는 전체 tool 목록입니다. 각 tool은 입력 스키마 · 출력 · 필요 scope · 위험도를 포함합니다.

AppStable · v1Approval required

import_and_deploy

GitHub 저장소 URL 하나로 앱 생성·연결·첫 배포를 한 번에 끝내요. 제일 빠르게 프로덕션에 올리고 싶을 때 쓰세요.

Required scope
admin
Avg response
비동기 (tasks 로 긴 작업 처리)
Idempotent
아니요 — 재시도 시 dedupe_key 로 중복 방지
Side effect
있어요. 실제 배포·스키마·권한이 바뀌어요.

Input schema

repo_url*
string
Git 저장소 URL (예: https://github.com/acme/hello-ax)
branch
string
배포할 브랜치. 생략하면 default 브랜치

Output

Response · 200 OK
{}

Example

Natural (Claude)
https://github.com/acme/hello-ax main 브랜치로 지금 바로 앱 만들고 배포해줘
MCP raw
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "import_and_deploy",
    "arguments": {}
  }
}
ax CLI
curl -s -X POST "$AX_MCP_URL" \
  -H "Authorization: Bearer $AX_TOKEN" \
  -H "Mcp-Session-Id: $AX_SESSION" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"import_and_deploy","arguments":{}}}'

Error codes

UNAUTHORIZED401토큰이 없거나 만료됐어요. 다시 로그인하고 시도해 주세요.
FORBIDDEN_SCOPE403이 작업에 필요한 scope 가 토큰에 없어요 (read/write/admin).
APP_KEY_FORBIDDEN403app-key 토큰으론 쓸 수 없는 tool 이에요. OAuth 토큰이 필요해요.

Related tools