독립유공자 공훈록 MCP 서버
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_merit_listC | 독립유공자 공훈록 목록을 조회합니다 |
| get_public_reportC | 독립유공자 공적조서를 조회합니다 |
| get_hunkuk_codesC | 훈격 코드 정보를 조회합니다 |
| get_workout_affil_codesC | 운동계열 코드 정보를 조회합니다 |
| clear_cacheB | 캐시된 데이터를 모두 초기화합니다 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| search-independence-activist | 이름, 운동계열, 지역 등의 조건으로 독립유공자 정보를 검색합니다 |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| 독립유공자 공훈록 | 독립유공자 공훈록 정보 - 독립유공자의 기본 정보와 포상 내역을 제공합니다. |
| 독립유공자 공적조서 | 독립유공자 공적조서 정보 - 독립유공자의 상세한 활동 내역과 공적 사항을 제공합니다. |
| 훈격 코드 정보 | 독립유공자 훈격 코드 정보 - 건국훈장, 건국포장, 대통령표창 등의 훈격 분류 체계를 제공합니다. |
| 운동계열 코드 정보 | 독립유공자 운동계열 코드 정보 - 3.1운동, 의병활동, 광복군, 임시정부 등 독립운동 유형 분류 체계를 제공합니다. |
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: cache management, code lookups for hunkuk and workout affiliation, and two types of merit record retrieval (list and public report). No ambiguity or overlap exists between these functions.
All tools follow a consistent verb_noun pattern with 'get_' or 'clear_' prefixes, using snake_case throughout. The naming is predictable and readable across all five tools.
With 5 tools, this server is well-scoped for its domain of Korean independence merit records. Each tool serves a specific, necessary function without bloat or redundancy.
The toolset covers core read operations (list, report, code lookups) and cache management well. A minor gap exists in write/update capabilities (e.g., no create or modify tools), but this is reasonable for a likely read-only public data service.