← 블로그 목록
가이드2026-05-28

ChatGPT custom action 으로 한국 070 발신 — webhook 안 만들고 5분 셋업

ChatGPT custom action 으로 한국 070 발신 — webhook 안 만들고 5분 셋업

ChatGPT GPTs 의 custom action 으로 한국 070 번호 발신을 붙일 수 있다. 자체 백엔드/webhook 서버 없이 ClawOps REST API 를 GPTs 가 직접 호출.

0. 사전 준비

  • ChatGPT Plus/Business (custom GPT 만들기 권한)
  • ClawOps 계정 + API 키

1. ClawOps API 키 + 070 번호 발급

curl -X POST https://api.claw-ops.com/v1/accounts/{accountId}/numbers \
  -H "Authorization: Bearer sk_..." \
  -H "Content-Type: application/json" \
  -d '{"webhookUrl": ""}'

응답:

{ "id": "num_abc...", "phone_number": "07052358010" }

2. Custom GPT 만들기

ChatGPT → My GPTs → Create → Configure.

Instructions (system prompt)

당신은 한국 070 번호로 전화를 걸 수 있는 비서입니다.
사용자가 "OOO 에게 전화해서 XXX" 라고 요청하면:
1. make_call action 호출
2. To: 사용자가 말한 번호 (010, 02, 070 등)
3. From: 미리 설정된 070 번호 (07052358010)
4. AI.Provider=openai, AI.Model=gpt-realtime, AI.ApiKey=OpenAI 키
5. AI.Messages 의 system 메시지에 사용자 요청을 짧고 명확하게 변환해서 넣기
끝나면 결과를 한국어로 요약.

Actions

Add action → OpenAPI schema:

openapi: 3.0.0
info:
  title: ClawOps Voice API
  version: "1.0"
servers:
  - url: https://api.claw-ops.com/v1
paths:
  /accounts/{accountId}/calls:
    post:
      operationId: make_call
      summary: 한국 070 번호로 전화 걸기 (AI 응답)
      parameters:
        - name: accountId
          in: path
          required: true
          schema: { type: string }
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required: [To, From]
              properties:
                To:
                  type: string
                  description: "01012345678 형식, 한국 번호만"
                From:
                  type: string
                  description: "발신 070 번호"
                AI:
                  type: object
                  description: "이 필드를 넣으면 AI가 통화를 처리 (Url 생략 시 Agent 모드). Provider/Model/ApiKey 필수"
                  required: [Provider, Model, ApiKey]
                  properties:
                    Provider:
                      type: string
                      enum: [openai, gemini]
                    Model:
                      type: string
                      description: "예: gpt-realtime"
                    ApiKey:
                      type: string
                      description: "AI 제공자(OpenAI/Gemini) API 키"
                    Voice: { type: string }
                    Language: { type: string, default: "ko" }
                    Messages:
                      type: array
                      description: "초기 메시지(system prompt 등). OpenAI Chat Completions 형식"
                      items:
                        type: object
                        properties:
                          role: { type: string, enum: [system, user] }
                          content: { type: string }
                    Greeting:
                      type: boolean
                      description: "통화 시작 시 AI가 먼저 인사할지 여부"
      responses:
        "200":
          description: 발신 시작
          content:
            application/json:
              schema:
                type: object
                properties:
                  id: { type: string }
                  status: { type: string }
  /accounts/{accountId}/calls/{callId}:
    get:
      operationId: get_call
      summary: 통화 결과·요약 조회
      parameters:
        - name: accountId
          in: path
          required: true
          schema: { type: string }
        - name: callId
          in: path
          required: true
          schema: { type: string }
      responses:
        "200":
          description: 통화 결과
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
security:
  - bearerAuth: []

Authentication

Custom action → Authentication → API Key → Bearer:

  • API Key: sk_...
  • Auth Type: Bearer

Privacy policy URL

ChatGPT 가 외부 API 호출시 요구. https://claw-ops.com/privacy 사용 가능.

3. 테스트

GPT 저장 후 채팅:

010-1234-5678 한테 전화해서 "내일 미팅 5시로 옮긴다고 전해줘"

GPT 가 make_call action 호출 → ClawOps 070 발신 → AI 가 메시지 read out → 결과 채팅창 반환.

4. 한계

  • ChatGPT custom action 은 모든 회사·개인이 같은 GPT 사용시 같은 API key 공유 (per-user 분리 어려움). 일 cap 필요시 ClawOps Console 에서 발신 단가 cap 설정.
  • 통화 시간 길어지면 GPT 요청이 timeout (30초). 비동기 패턴 권장: make_call 으로 발신만 → call_id 받음 → 사용자가 "결과 알려줘" 하면 get_call 호출.

5. 보안 권장

  • ChatGPT GPT 가 public 이면 API key 가 cap 안 두면 위험. 다음 박을 것:
    • 발신 가능 prefix 화이트리스트 (010, 02, 031, ... 만)
    • 일 발신 cap (MAX_CALLS_PER_DAY=20)
    • 야간 발신 차단 (서버측에서)

6. 비용

  • ChatGPT Plus: $20/월
  • ClawOps Trial 무료, Individual ₩19,000/월

다음 단계

관련 글 더 보기

가이드

Twilio 사용자가 ClawOps 070 추가하기 — 5분 마이그레이션 (코드 diff)

Twilio Programmable Voice 사용자가 한국 070 시장 진출시 ClawOps 로 마이그레이션 또는 hybrid 운영하는 가이드. 실제 코드 diff + webhook 핸들러 변환 + 가격 비교.

가이드

Claude Code 에 한국 070 번호 붙이기 — MCP 한 줄로 'thomi 한테 전화 걸어' 가능하게

Claude Code(터미널 CLI) 안에서 한국 070 번호로 직접 전화 걸고 받게 만드는 가이드. MCP 서버 설정 + ClawOps 070 번호 발급 + Claude Code agent 가 부르는 실제 프롬프트.

가이드

Claude Desktop 에 한국 070 번호 붙이기 — ClawOps MCP 커넥터로 전화 거는 Claude 만들기

Claude Desktop(데스크톱 앱)에 한국 070 번호 전화 기능을 붙이는 가이드. ClawOps 원격 MCP 서버를 OAuth 커스텀 커넥터로 연결 + 070 발급 + 실제 사용 프롬프트. (설치할 npm 패키지·API 키 환경변수 불필요)

가이드

OpenAI Codex CLI 에 한국 070 번호 붙이기 — MCP 한 줄로 전화 거는 Codex

OpenAI Codex CLI(터미널 코딩 에이전트)에 한국 070 번호 전화 기능을 붙이는 가이드. MCP 설정 + ClawOps 070 발급 + 실제 사용 프롬프트.

가이드

Cursor agent 에 한국 070 번호 붙이기 — MCP HTTP 로 원격 전화 tool

Cursor 의 background agent 에 한국 070 번호 전화 기능을 붙이는 가이드. MCP HTTP 서버 설정 + ClawOps 070 + 원격 환경에서 작동하는 코드 예시.

ClawOps AI 전화 API로 시작하기

070 번호 발급부터 AI 음성 통화까지, REST API 몇 줄이면 됩니다.