K-Sign MCP Server
Click on "Install 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
한국수어(KSL) 공공데이터를 AI가 활용할 수 있도록 제공하는 Model Context Protocol(MCP) 서버입니다.
Claude Desktop, ChatGPT MCP Client, 카카오 Play MCP 등 다양한 MCP 환경에서 사용할 수 있습니다.
Phase 1 기능
Tool | 설명 |
| 한국어 키워드로 수어 검색 |
| 수어 ID로 상세 정보 조회 |
Related MCP server: SNOMED CT MCP Server
아키텍처
Clean Architecture + DDD 구조를 따릅니다.
src/
├── domain/ # 엔티티, Repository 인터페이스, 도메인 에러
├── application/ # Use Case, DTO
├── infrastructure/ # SQLite/PostgreSQL, DI, Transport, Logger
├── interfaces/ # MCP Tool 어댑터
└── config/ # 환경변수 설정Repository Pattern:
SignTermRepository인터페이스로 DB 구현체를 교체 가능 (SQLite → PostgreSQL)MCP SDK v2:
@modelcontextprotocol/server2.0.0-alpha.2Full-Text Search: SQLite FTS5 기반 검색 (LIKE 폴백 포함)
요구 사항
Node.js 22+
npm 10+
빠른 시작
1. 설치
npm install
cp .env.example .env2. DB 마이그레이션 및 시드
npm run db:migrate3. 개발 실행
# stdio (Claude Desktop 등 로컬 MCP 클라이언트)
npm run dev
# HTTP (원격 배포)
MCP_TRANSPORT=http npm run dev4. 빌드 및 프로덕션 실행
npm run build
npm start환경 변수
변수 | 기본값 | 설명 |
|
|
|
|
| MCP 서버 이름 |
|
| MCP 서버 버전 |
|
| HTTP 바인드 호스트 |
|
| HTTP 포트 |
|
|
|
|
| SQLite DB 경로 |
| — | PostgreSQL 연결 URL (postgres 사용 시 필수) |
|
| 검색 결과 최대 개수 |
|
|
|
MCP Tool 사용 예시
search_sign
{
"keyword": "학교"
}응답:
{
"results": [
{
"id": "sign-001",
"word": "학교",
"description": "교육기관을 의미하는 수어",
"imageUrl": "https://example.com/signs/school.png",
"videoUrl": "https://example.com/signs/school.mp4"
}
]
}get_sign_detail
{
"signId": "sign-001"
}응답:
{
"id": "sign-001",
"word": "학교",
"meaning": "교육기관을 의미하는 수어",
"category": "일상생활",
"handShape": "주먹을 쥔 손",
"movement": "손등을 위로 향하게 하여 앞으로 이동",
"imageUrl": "https://example.com/signs/school.png",
"videoUrl": "https://example.com/signs/school.mp4",
"source": "문화체육관광부 일상생활 수어 데이터"
}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"
}
}
}
}Docker
docker compose up --buildHealth check:
GET http://localhost:3000/healthMCP endpoint:
POST http://localhost:3000/mcp
테스트
npm test
npm run test:coveragePostgreSQL 전환 (향후)
PostgresSignTermRepository구현.env에서DB_PROVIDER=postgres,POSTGRES_URL설정RepositoryFactory가 자동으로 PostgreSQL 구현체 사용
라이선스
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/a4file/k-sign-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server