Skip to main content
Glama
clayop

korean-university-regulation-mcp

by clayop

korean-university-regulation-mcp

한국 주요 대학교 규정관리시스템의 규정을 검색하고 조회할 수 있는 MCP(Model Context Protocol) 서버입니다.

동일한 규정관리시스템(lmxsrv)을 사용하는 14개 대학을 지원합니다.

지원 대학

ID

대학명

도메인

hansung

한성대학교

rule.hansung.ac.kr

kaist

KAIST (한국과학기술원)

rule.kaist.ac.kr

korea

고려대학교

policies.korea.ac.kr

khu

경희대학교

rule.khu.ac.kr

kookmin

국민대학교

rule.kookmin.ac.kr

kwangwoon

광운대학교

rule.kwangwoon.ac.kr

swu

서울여자대학교

rule.swu.ac.kr

inje

인제대학교

rule.inje.ac.kr

mokwon

목원대학교

rule.mokwon.ac.kr

kyonggi

경기대학교

rule.kyonggi.ac.kr

duksung

덕성여자대학교

rule.duksung.ac.kr

koreatech

한국기술교육대학교

rule.koreatech.ac.kr

konyang

건양대학교

rule.konyang.ac.kr

konkuk

건국대학교

rule.konkuk.ac.kr

Related MCP server: hansung-university-regulation-mcp

설치

Claude Desktop (로컬 stdio)

claude_desktop_config.json에 추가:

{
  "mcpServers": {
    "korean-regulation": {
      "command": "npx",
      "args": ["-y", "korean-university-regulation-mcp"]
    }
  }
}

Claude Desktop (Remote HTTP)

{
  "mcpServers": {
    "korean-regulation": {
      "url": "https://korean-university-regulation-mcp.clayop.workers.dev/mcp"
    }
  }
}

Claude Code

claude mcp add korean-regulation -- npx -y korean-university-regulation-mcp

Claude Web / Claude Mobile

  1. Settings > MCP Servers (or Integrations)

  2. "Add MCP Server" 클릭

  3. URL 입력: https://korean-university-regulation-mcp.clayop.workers.dev/mcp

ChatGPT

  1. Settings > MCP (또는 Connectors/Tools)

  2. "Add MCP Server" 선택

  3. URL 입력: https://korean-university-regulation-mcp.clayop.workers.dev/mcp

Cursor / Windsurf 등 IDE

{
  "mcpServers": {
    "korean-regulation": {
      "command": "npx",
      "args": ["-y", "korean-university-regulation-mcp"]
    }
  }
}

도구 (Tools)

search_regulations

키워드로 규정을 검색합니다.

  • university (string, required): 대학 ID (예: "kaist", "korea", "hansung")

  • query (string): 검색 키워드 (예: "학칙", "장학금", "교원임용")

list_regulations

규정 목록을 반환합니다. university를 생략하면 지원 대학 목록을 보여줍니다.

  • university (string, optional): 대학 ID

  • includeOldVersions (boolean, optional): true이면 구버전 포함

get_regulation

특정 규정의 전문을 Markdown으로 조회합니다.

  • university (string, required): 대학 ID

  • id (number): 규정의 SEQ_HISTORY ID

get_regulation_article

특정 규정의 특정 조항만 조회합니다.

  • university (string, required): 대학 ID

  • id (number): 규정의 SEQ_HISTORY ID

  • article (string): 조항 번호 (예: "제5조", "5")

사용 예시

  • "KAIST 학사규정을 검색해줘"

  • "고려대학교 장학금 관련 규정을 찾아줘"

  • "한성대학교 학칙 제5조를 보여줘"

  • "지원하는 대학 목록을 알려줘"

데이터 업데이트

서버 시작 시 각 대학별로 자동으로 신규/개정 규정을 감지합니다.

인덱스를 수동으로 재빌드하려면:

npm run build-index              # 전체 대학
npx tsx scripts/build-index.ts kaist  # 특정 대학만

개발

npm install
npm run build

라이선스

MIT

Available Tools

4 tools
get_regulationA

특정 규정의 전문을 조회합니다. search_regulations 또는 list_regulations에서 얻은 id(SEQ_HISTORY)를 사용하세요.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes규정의 SEQ_HISTORY ID (search_regulations 또는 list_regulations 결과에서 확인)
universityYes대학 ID (예: 'hansung', 'kaist', 'korea')

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the transparency burden. It discloses the read-only nature (조회) and the full-text scope, but omits details about output structure, error behavior, or permissions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that front-loads the action and then provides usage context, with no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple fetch-by-ID tool, the description adequately covers the main usage and return scope. However, the absence of an output schema and details about failure cases leaves minor gaps in completeness.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Input schema already fully documents both parameters (id and university) with descriptions. The description merely references the schema's ID source, adding no new semantic value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool retrieves the full text of a specific regulation ('특정 규정의 전문을 조회합니다'), distinguishing it from search/list tools and the article-level sibling by focusing on full-text retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit prerequisite guidance: use the ID obtained from search_regulations or list_regulations. This implies when to use the tool (after a search/list) but does not explicitly mention when not to use it or alternatives for article-level retrieval.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_regulation_articleA

특정 규정의 특정 조항만 조회합니다. 규정 id와 조항 번호(예: '제5조')를 입력하세요.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes규정의 SEQ_HISTORY ID
articleYes조항 번호 (예: '제5조', '5', '제12조')
universityYes대학 ID

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the transparency burden. It indicates a read-only lookup (조회) and scoping to a single article, but it does not disclose return format, error behavior, or access requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence that states purpose and inputs, with no redundancy. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple retrieval tool with good schema but no output schema, the description is adequate but not comprehensive; it omits the return value and any caveats, which would be helpful for an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents all parameters. The description adds minimal extra meaning by associating 'regulation id' and 'article number' to the id/article parameters, but it does not mention the university parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that this tool retrieves only a specific article of a regulation, distinguishing it from siblings like get_regulation and search_regulations. The verb '조회' (retrieve) and resource 'regulation article' make the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It instructs the user to enter the regulation id and article number, providing clear context for when to use this tool. However, it does not explicitly mention alternatives or exclusions, such as using get_regulation for the full regulation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_regulationsA

대학 규정 목록을 반환합니다. university를 생략하면 지원 대학 목록을 보여줍니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
universityNo대학 ID. 생략하면 지원 대학 목록을 반환합니다.
includeOldVersionsNotrue이면 구버전 포함, false이면 최신 버전만 표시

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses the conditional behavior (list of regulations vs. list of universities) but does not mention return format, pagination, or other potential side effects. As a simple read-only list tool, this is acceptable but not exceptionally transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with no extraneous information. It front-loads the purpose and states the key conditional behavior efficiently. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the low complexity and full parameter descriptions in the schema, the description is generally complete for a list tool. However, no output schema exists and the description doesn't mention return fields, but for a list of regulations this is likely acceptable. It also doesn't explain relation to sibling tools, but that is not critical here.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for both parameters, and the main description repeats the behavior of omitting 'university' that is already in the schema parameter description. No additional parameter semantics are added beyond what the schema provides, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns a list of university regulations, with a specific scope: if 'university' is omitted, it shows supported universities. This is a specific verb+resource+scope. However, it does not explicitly differentiate itself from sibling tools like search_regulations, so it falls short of a 5.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides implied usage context by explaining the behavior when 'university' is omitted, but it does not explicitly state when to use this tool versus alternatives such as search_regulations or get_regulation. No exclusions or alternative tool references are given, so there is no clear guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_regulationsA

대학 규정을 키워드로 검색합니다. 규정명에서 키워드를 찾아 매칭되는 규정 목록을 반환합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes검색 키워드 (예: '학칙', '장학금', '교원임용')
universityYes대학 ID (예: 'hansung', 'kaist', 'korea', 'khu')

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full responsibility for behavioral disclosure. It states that search is limited to regulation names and returns a list, adding useful context. However, it does not clarify matching behavior (partial/exact, case sensitivity), pagination, or handling of no results, leaving some gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description consists of two concise sentences, front-loading the action and scope. Every word earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple with two fully described parameters, but lacks an output schema and annotations. The description explains the core search behavior and return type (list of regulations), but omits details about the structure of the returned list and edge cases, such as no matches. It is adequate for a basic tool but not fully complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides descriptions for both parameters with 100% coverage, so the description does not need to add parameter details. It adds no extra meaning beyond the schema, which is the baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it searches university regulations by keyword, specifically looking in regulation names, and returns a list of matching regulations. This differentiates it from sibling tools that list all regulations or fetch specific ones.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly implies use when the user needs to find regulations by keyword, and the scope ('regulations name') is clear. However, it does not explicitly contrast with sibling tools or mention when not to use it, so it lacks explicit exclusions or alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updatesv0.2.1
    • First observedget_regulation
    • First observedget_regulation_article
    • First observedlist_regulations
    • First observedsearch_regulations

TDQS

A4.1/5.0

Scored across 4 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

Four tools are well-scoped for a regulation lookup server, covering search, list, full-text retrieval, and article-level retrieval without unnecessary extras.

Completeness4/5

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.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers