MCP Tools Reference

v1 · 26 tools

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

APIStable · v1

get_api_schema

특정 엔드포인트의 요청·응답 스키마를 가져와요. `path` 는 `list_apis` 에 나온 템플릿 경로 그대로 써주세요.

필요 scope
read
평균 응답
< 2s
멱등성
네 — 반복해도 같은 결과
사이드 이펙트
없어요. 조회만 해요.

Input schema

app_id*
number
앱 ID
path*
string
/users/{id} 같은 템플릿 path
method*
string
GET, POST, …

Output

Response · 200 OK
{}

Example

자연어 (Claude)
POST /users 가 받는 body 구조가 어떻게 돼?
MCP raw
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "get_api_schema",
    "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":"get_api_schema","arguments":{}}}'

Error codes

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

Related tools