Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server to search and retrieve regulations from 14 Korean universities' regulation management systems. Supports querying, listing, and viewing full text or specific articles.

README.md

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 |

설치

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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.