MCP Tools Reference

v1 · 26 tools

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

DeployStable · v1승인 필요

deploy_app

앱을 배포. Rolling/Blue-Green/Canary 전략, task augmentation 지원 (긴 작업 비동기).

필요 scope
write
평균 응답
비동기 (tasks)
멱등성
no (dedupe_key 로 재시도)
사이드 이펙트
있음 — 상태 변경

Input schema

app_id*
number
배포할 앱 ID
commit_sha
string
배포할 Git 커밋 (생략 시 기본 브랜치 HEAD)
strategy
enum
rolling / blue_green / canary (기본 canary 10%)
task
object
MCP task augmentation (비동기 실행)

Output

Response · 200 OK
{}

Example

자연어 (Claude)
"deploy_app" 를 자연어로 요청
MCP raw
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "deploy_app",
    "arguments": {}
  }
}
ax CLI
ax mcp call deploy_app

Error codes

UNAUTHORIZED401OAuth Bearer 토큰 누락 또는 만료 — /.well-known/oauth-protected-resource 로 재인증
FORBIDDEN_SCOPE403요청한 tool 에 필요한 scope (read/write/admin) 가 토큰에 없음
APP_KEY_FORBIDDEN403app-key 인증은 일부 API tool 만 접근 가능 — OAuth 토큰이 필요

Related tools