korean-university-regulation-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
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_regulationsA | 대학 규정을 키워드로 검색합니다. 규정명에서 키워드를 찾아 매칭되는 규정 목록을 반환합니다. |
| list_regulationsA | 대학 규정 목록을 반환합니다. university를 생략하면 지원 대학 목록을 보여줍니다. |
| get_regulationA | 특정 규정의 전문을 조회합니다. search_regulations 또는 list_regulations에서 얻은 id(SEQ_HISTORY)를 사용하세요. |
| get_regulation_articleA | 특정 규정의 특정 조항만 조회합니다. 규정 id와 조항 번호(예: '제5조')를 입력하세요. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a distinct function: search by keyword, list all (or universities), get full text, and get a specific article. No two tools serve the same purpose, and the descriptions clearly delineate when to use each.
All tool names follow a consistent verb_noun pattern in snake_case (search_regulations, list_regulations, get_regulation, get_regulation_article), with 'get' consistently used for retrieval operations.
Four tools are well-scoped for a regulation lookup server, covering search, list, full-text retrieval, and article-level retrieval without unnecessary extras.
The tool set covers the main workflows: finding regulations (search/list) and retrieving full text or specific articles. However, search only matches regulation titles, not content, and there is no direct way to filter search results by university, which are minor gaps.