ChatGPT
ChatGPT는 두 가지 방법으로 연결합니다. ① Pro/Enterprise의 Custom Connector(MCP) 기능, ② 또는 GPT Builder의 Custom GPT Action으로 REST API 직접 호출.
사전 준비
ChatGPT Pro/Team/Enterprise 플랜 또는 Custom GPT를 만들 수 있는 Plus 이상 계정. Action 방식은 FindIP API 키가 필요합니다.
단계별 설정
1
방법 ① — Custom Connector (Pro/Enterprise, 권장)
ChatGPT 좌측 하단 프로필 → Settings → Connectors → Add custom connector → URL에 아래 값 등록 → OAuth 팝업에서 FindIP 로그인.
MCP URL
https://api.findip.ai/mcp
2
방법 ② — Custom GPT Action (Plus 이상)
GPT Builder에서 새 GPT 생성 → Configure → Actions → Create new action → Authentication에 API Key, Custom Header Name =
X-API-Key → 아래 OpenAPI 스키마 붙여넣기.openapi.yaml (요약)
openapi: 3.1.0
info:
title: FindIP Search
version: "1.0"
servers:
- url: https://api.findip.ai
paths:
/api/v1/search/semantic:
post:
operationId: semanticSearch
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
query: { type: string }
top_k: { type: integer, default: 10 }
responses:
"200": { description: ok }3
GPT 사용 시작
대화창에서 자연어로 검색 요청 → ChatGPT가 자동으로 FindIP를 호출하여 응답을 인용합니다.
첫 검색 예시
아래 문장을 그대로 LLM에게 보내보세요.
“2차전지 양극재 단결정 합성 공정 관련, LG에너지솔루션과 삼성SDI의 최근 5년 주요 한국·미국 출원을 비교해줘.”
트러블슈팅
Custom Connector 메뉴가 없습니다.
플랜 권한 문제입니다. Pro 이상으로 업그레이드하거나, GPT Builder의 Action 방식을 사용하세요.
Action에서 401 Unauthorized 오류.
API Key 헤더 이름이 정확히
X-API-Key인지, 키가 활성 상태인지 대시보드에서 확인하세요.