클코클라우드 로고
문서
로그인
  • 클코클라우드 커넥터
    • OpenClaw
    • Hermes
    • 다른 AI 에이전트
클코클라우드 문서
문서OpenClaw

오픈클로

OpenClaw는 인터랙티브 입력과 config.json 직접 편집 두 가지로 클코클라우드 API를 추가할 수 있습니다. 초보자는 방법 1, 가장 안정적인 건 방법 2입니다.

설정 구조는 OpenClaw 공식 문서 기준이에요. 환경에 따라 동작이 다를 수 있으며, 문제가 있으면 문제 해결을 확인해 주세요.

방법 1 · 인터랙티브 (추천)

개인정보 국외 이전 안내

요청 처리 과정에서 입력한 내용이 국외에 위치한 처리자에게 전송될 수 있습니다. 주민등록번호 등 민감정보 또는 처리 권한이 없는 제3자의 개인정보를 입력하지 마시기 바랍니다. 자세한 내용은 개인정보 처리방침의 국외 이전 안내를 참고하세요.

terminal
bash
1openclaw onboard2 3# 또는 직접 provider 추가4openclaw config add-provider

실행 후 아래 순서대로 입력합니다.

  1. Provider 타입 → Custom API 또는 Anthropic Compatible 선택
  2. Provider 이름 → clcocloud-anthropic (추천)
  3. Base URL → https://api.clcocloud.com/claude/v1
  4. API Key → 발급받은 키 전체 붙여넣기
  5. API Mode → anthropic-messages (반드시 선택 — Anthropic 네이티브 핵심)
  6. 모델 등록(선택) →

방법 2 · config.json 직접 편집

terminal
bash
1mkdir -p ~/.openclaw2code ~/.openclaw/openclaw.json

아래 내용을 그대로 붙여넣고 키만 본인 값으로 바꿉니다.

~/.openclaw/openclaw.json
json5
1{2  "models": {3    "mode": "merge",4    "providers": {5      "clcocloud-anthropic": {6        "baseUrl": "https://api.clcocloud.com/claude/v1",7        "apiKey": "여기에_발급받은_API키를_넣어주세요",8        "api": "anthropic-messages",9        "timeoutSeconds": 180,10        "headers": { "anthropic-version": "2023-06-01" },11        "models": [12          { "id": "claude-fable-5", "name": "Claude Fable 5 (최상위 지능)", "contextWindow": 200000 },13          { "id": "claude-sonnet-5", "name": "Claude Sonnet 5 (코딩 균형)", "contextWindow": 200000 },14          { "id": "claude-opus-5", "name": "Claude Opus 5" },15          { "id": "claude-opus-4-8", "name": "Claude Opus 4.8", "contextWindow": 200000 },16          { "id": "claude-sonnet-4-6", "name": "Claude Sonnet 4.6 (추천)", "contextWindow": 200000 },17          { "id": "claude-haiku-4-5-20251001", "name": "Claude Haiku 4.5 (빠르고 저비용)", "contextWindow": 200000 },18          { "id": "claude-opus-4-7", "name": "Claude Opus 4.7", "contextWindow": 200000 }19        ]20      }21    }22  },23  "agents": {24    "defaults": { "models": ["clcocloud-anthropic/claude-haiku-4-5-20251001"] }25  }26}
"api": "anthropic-messages" 가 반드시 있어야 Anthropic 네이티브로 동작합니다.

적용 및 확인

terminal
bash
1openclaw restart2openclaw doctor3openclaw model status4openclaw config get models.providers.clcocloud-anthropic

테스트:

terminal
bash
1openclaw "안녕, 현재 날짜와 내 프로젝트 구조를 분석해줘"
AI 생성 결과 이용 안내

AI가 생성한 결과에는 오류나 부정확한 내용이 포함될 수 있습니다. 실제 업무, 외부 배포, 계약 또는 법률·의료·재무 판단에 사용하기 전에 정확성과 적합성을 직접 검토하시기 바랍니다. 자세한 내용은 이용약관의 이용자의 책임 조항을 참고하세요.

한 번에 끝내기

인터랙티브 없이 한 번에 적용하려면:

terminal
bash
1cat > ~/.openclaw/openclaw.json << EOF2{3  "models": {4    "mode": "merge",5    "providers": {6      "clcocloud-anthropic": {7        "baseUrl": "https://api.clcocloud.com/claude/v1",8        "apiKey": "여기에_발급받은_API키를_넣어주세요",9        "api": "anthropic-messages"10      }11    }12  }13}14EOF15 16openclaw restart && openclaw model status
마지막 업데이트: 2026.08.08
이 문서가 도움이 되었나요?
이전Codex 사용법다음Hermes
claude-fable-5 · claude-sonnet-5 · claude-opus-4-8 · claude-opus-4-7 · claude-opus-4-6 · claude-sonnet-4-6 · claude-haiku-4-5