K-Sign MCP Server
Integrates with Kakao's PlayMCP platform to enable Korean Sign Language search and detail retrieval within PlayMCP clients.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@K-Sign MCP Serversearch for sign for '사랑'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
K-Sign MCP Server
서버 이름 |
|
설명 | 국립국어원 공공 수어 데이터(3만 건+)를 검색·조회하는 한국수어(KSL) MCP 서버. 수어 단어, 수형 설명, 이미지·영상 URL을 AI에게 제공합니다. |
Git | |
MCP Endpoint |
|
인증 | 없음 |
Claude Desktop, ChatGPT MCP Client, 카카오 PlayMCP 등 MCP 클라이언트에서 사용할 수 있습니다.
기능
Tool | 설명 |
| 한국어 키워드로 수어 검색 (FTS5 + LIKE 폴백) |
| 수어 ID로 상세 정보·이미지·영상 URL 조회 |
데이터 소스 (Phase 2)
국립국어원 KCISA Open API에서 실제 sldict.korean.go.kr 미디어 URL을 수집합니다.
데이터셋 | API | 약 件수 |
일상생활 수어 |
| ~7,500 |
전문용어 수어 |
| ~10,000 |
문화정보 수어 |
| ~1,200 |
통합 수어정보 |
| ~19,000 |
API마다 인증키가 다를 수 있습니다. 아래 공공데이터 수집 참고.
Related MCP server: ScienceON-MCP
아키텍처
Clean Architecture + DDD
src/
├── domain/sign/ # SignTerm, Repository, errors
├── application/sign/ # SearchSign, GetSignDetail UseCase
├── infrastructure/
│ ├── persistence/sqlite/ # SQLite + FTS5
│ ├── collectors/culture-sign/ # KCISA API 수집기
│ ├── transport/ # stdio / HTTP (Fastify)
│ └── di/
├── interfaces/mcp/ # MCP tool adapters
└── config/env.tsMCP SDK:
@modelcontextprotocol/server2.0.0-alpha.2DB: SQLite (기본) → PostgreSQL 교체 가능 (
SignTermRepository인터페이스)
요구 사항
Node.js 22+
npm 10+
빠른 시작
npm install
cp .env.example .env
npm run db:setup # migrate + 공공 API 수집 (키 필요)
npm run dev # stdio MCPHTTP 모드 (배포/PlayMCP):
MCP_TRANSPORT=http npm run dev
# Health: GET http://localhost:8000/health
# MCP: POST http://localhost:8000/mcp프로덕션:
npm run build && npm start환경 변수
서버
변수 | 기본값 | 설명 |
|
|
|
|
| MCP 서버 이름 |
|
| HTTP 바인드 호스트 |
|
| HTTP 포트 (KC는 |
|
|
|
|
| SQLite 경로 |
|
| 검색 결과 상한 |
|
| 로그 레벨 |
공공데이터 수집
변수 | 설명 |
| 공통 키 (단일 키 모드) |
| 일상생활 수어 |
| 전문용어 수어 |
| 문화정보 수어 |
| 통합 수어정보 |
|
|
| Docker 시작 시 자동 수집 |
| 페이지 크기 (기본 100) |
| 요청 간격 ms (기본 200) |
| 키 없을 때 샘플 5건 (데모용) |
공공데이터 수집
1. API 키 발급
문화공공데이터광장 또는 공공데이터포털에서 API별 활용신청:
API | 환경변수 |
일상생활 수어 |
|
전문용어 수어 |
|
문화정보 수어 |
|
통합 수어정보 |
|
키가 API마다 다를 때 (권장):
DATA_GO_KR_SERVICE_KEY_DAILY=...
DATA_GO_KR_SERVICE_KEY_PROFESSIONAL=...
DATA_GO_KR_SERVICE_KEY_CULTURE=...
DATA_GO_KR_SERVICE_KEY_COMPREHENSIVE=...개별 키를 하나라도 넣으면 DATA_GO_KR_SERVICE_KEY로 나머지가 자동 대체되지 않습니다. 키가 있는 API만 수집됩니다.
2. 수집 실행
npm run db:migrate # 스키마만
npm run db:collect # API 수집 → DB 저장
npm run db:setup # migrate + collect504 타임아웃 등 일시 오류는 자동 재시도하며, 실패 시 이미 수집한 페이지는 유지합니다.
PlayMCP in KC 배포
항목 | 값 |
MCP 식별자 |
|
Git 저장소 | |
Active Endpoint | https://k-sign-mcp-server.playmcp-endpoint.kakaocloud.io/mcp |
Git 소스 빌드 (환경변수 입력 칸 없음)
KC Git 소스 빌드 화면에는 PAT·Git URL만 있고 런타임 환경변수 입력란이 없습니다.
이 저장소는 이미 수집된 SQLite DB(docker/seed/ksign.db, 약 3.7만 건)를 Docker 이미지에 포함하므로, KC에서 API 키 없이도 검색이 동작합니다.
PlayMCP 콘솔 → Git 소스 빌드
Git URL:
https://github.com/a4file/k-sign-mcp-server(공개 저장소 → PAT 불필요)브랜치:
main, Dockerfile:Dockerfile등록 후 빌드·배포 완료되면 Endpoint로 MCP 연결
데이터를 다시 수집해 이미지에 반영하려면 로컬에서:
npm run db:setup
npm run db:export-seed # data/ksign.db → docker/seed/ksign.db
git add docker/seed/ksign.db && git commit && git pushKC에서 환경변수를 넣을 수 있는 다른 경로가 생기면, 아래 키로 COLLECT_ON_START=true 시 컨테이너 기동 시 재수집도 가능합니다.
DATA_GO_KR_SERVICE_KEY_DAILY=...
DATA_GO_KR_SERVICE_KEY_PROFESSIONAL=...
DATA_GO_KR_SERVICE_KEY_CULTURE=...
DATA_GO_KR_SERVICE_KEY_COMPREHENSIVE=...
COLLECT_ON_START=true.env는 git에 올리지 마세요.
Docker
docker compose up --buildHealth:
GET http://localhost:8000/healthMCP:
POST http://localhost:8000/mcp
Claude Desktop 연동
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"k-sign": {
"command": "node",
"args": ["/absolute/path/to/k-sign-mcp-server/dist/index.js"],
"env": {
"SQLITE_PATH": "/absolute/path/to/k-sign-mcp-server/data/ksign.db"
}
}
}
}MCP Tool 예시
search_sign
{ "keyword": "안녕하세요" }{
"results": [
{
"id": "ksign-daily-…",
"word": "안녕하세요",
"description": "인사 표현",
"imageUrl": "http://sldict.korean.go.kr/multimedia/…jpg",
"videoUrl": "http://sldict.korean.go.kr/multimedia/…mp4"
}
]
}get_sign_detail
{ "signId": "ksign-daily-…" }테스트
npm test
npm run test:coverageGit 커밋 설정 (a4file 계정)
Vercel/GitHub 연동은 a4file 프로필 하나만 사용합니다. 커밋이 a4file-ai로 잡히지 않도록 저장소 루트에서 한 번 실행하세요:
./scripts/setup-git.sh이 스크립트는:
커밋 작성자를
a4fileGitHub noreply 이메일로 설정 (116946770+a4file@users.noreply.github.com)Co-authored-by: Cursor/a4file-ai트레일러를 커밋 메시지에서 자동 제거하는 Git hook 활성화
푸시는 gh auth login으로 a4file 계정이 active인지 확인 후 진행하세요.
npm 스크립트
스크립트 | 설명 |
| 개발 서버 (tsx watch) |
| TypeScript 빌드 |
| DB 스키마 생성 |
| 공공 API 수집 |
| migrate + collect |
PostgreSQL 전환 (향후)
PostgresSignTermRepository구현 완료 상태.env:DB_PROVIDER=postgres,POSTGRES_URL=…
라이선스
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server for finding authoritative primary data sources and official portals.
- mcpweaveOAuthcom.mcpweave
Korea-native MCP gateway: Korean commerce, payments, messaging, gov & finance APIs for AI agents.
- potto-japanOAuthapp.potto
Authoritative JLPT-graded Japanese dataset (kanji, vocab, grammar, history) via MCP and REST.
APIs.guru MCP — keyless directory of 2,500+ public APIs and their OpenAPI specs.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for Korea's KOLAS (Korean Laboratory Accreditation Scheme) under KATS. Search calibration / testing / inspection / medical-testing / reference-material-production / proficiency-testing accredited organizations and standards via knab.go.kr + data.go.kr.310MIT
- AlicenseAqualityBmaintenanceMCP server for searching Korean scientific literature, patents, reports, and more via the KISTI ScienceON API.171Creative Commons Attribution Non Commercial 4.0 International
- AlicenseAqualityCmaintenanceProvides Korean stock market data, including DART electronic disclosures and KRX trading information, enabling users to query company profiles, financial statements, and stock trade details via MCP clients.9MIT
- AlicenseAqualityAmaintenanceMCP server that wraps the Korean government's '나라장터 사전규격정보서비스' API, enabling natural language search and retrieval of public procurement pre-specifications through simplified tools.563MIT