MCP Tools Reference

v1 · 26 tools

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

GitHubStable · v1승인 필요

connect_repo

GitHub 저장소를 앱에 연결해요. GitHub App 설치 링크 받기 · 저장소 목록 보기 · 앱-저장소 연결/해제까지 한 tool 에서 해요.

필요 scope
admin
평균 응답
비동기 (tasks 로 긴 작업 처리)
멱등성
아니요 — 재시도 시 dedupe_key 로 중복 방지
사이드 이펙트
있어요. 실제 배포·스키마·권한이 바뀌어요.

Input schema

action*
enum
install_url · list_repos · connect · disconnect
app_id
number
대상 앱 ID (connect/disconnect 시)
repo_full_name
string
owner/repo 형식

Output

Response · 200 OK
{}

Example

자연어 (Claude)
acme/hello-ax 저장소를 이 앱에 연결해줘
MCP raw
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "connect_repo",
    "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":"connect_repo","arguments":{}}}'

Error codes

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

Related tools