hansung-university-regulation-mcp
Click on "Deploy 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., "@hansung-university-regulation-mcpSearch for regulations about academic leave"
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.
hansung-university-regulation-mcp
한성대학교 규정관리시스템의 규정을 검색하고 조회할 수 있는 MCP(Model Context Protocol) 서버입니다.
stdio(로컬) 방식과 Remote HTTP(Cloudflare Workers) 방식 모두 지원합니다.
설치
Claude Desktop (로컬 stdio)
claude_desktop_config.json에 추가:
{
"mcpServers": {
"hansung-regulation": {
"command": "npx",
"args": ["-y", "hansung-university-regulation-mcp"]
}
}
}Claude Desktop (Remote HTTP)
{
"mcpServers": {
"hansung-regulation": {
"url": "https://hansung-regulation-mcp.clayop.workers.dev/mcp"
}
}
}Claude Code
claude mcp add hansung-regulation -- npx -y hansung-university-regulation-mcpClaude Web / Claude Mobile
Settings > MCP Servers (or Integrations)
"Add MCP Server" 클릭
URL 입력:
https://hansung-regulation-mcp.clayop.workers.dev/mcp
ChatGPT
Settings > MCP (또는 Connectors/Tools)
"Add MCP Server" 선택
URL 입력:
https://hansung-regulation-mcp.clayop.workers.dev/mcp
Cursor / Windsurf 등 IDE
MCP 설정 파일에 추가:
{
"mcpServers": {
"hansung-regulation": {
"command": "npx",
"args": ["-y", "hansung-university-regulation-mcp"]
}
}
}또는 Remote HTTP URL 사용: https://hansung-regulation-mcp.clayop.workers.dev/mcp
Related MCP server: LexLink
도구 (Tools)
search_regulations
키워드로 규정을 검색합니다.
query(string): 검색 키워드 (예: "학칙", "장학금", "교원임용")
list_regulations
전체 규정 목록을 반환합니다.
includeOldVersions(boolean, optional): true이면 구버전 포함
get_regulation
특정 규정의 전문을 Markdown으로 조회합니다.
id(number): 규정의 SEQ_HISTORY ID
get_regulation_article
특정 규정의 특정 조항만 조회합니다.
id(number): 규정의 SEQ_HISTORY IDarticle(string): 조항 번호 (예: "제5조", "5")
사용 예시
"한성대학교 학칙에서 수강신청 관련 조항을 찾아줘"
"교원 임용 관련 규정 목록을 보여줘"
"장학금규정 제3조 내용이 뭐야?"
데이터 업데이트
서버 시작 시 자동으로 신규/개정 규정을 감지합니다. 번들된 인덱스 이후에 추가된 규정이 있으면 자동으로 메모리 인덱스에 반영됩니다.
인덱스를 수동으로 재빌드하려면:
npm run build-index개발
npm install
npm run build라이선스
MIT
Available Tools
4 toolsget_regulationA
특정 규정의 전문을 조회합니다. search_regulations 또는 list_regulations에서 얻은 id(SEQ_HISTORY)를 사용하세요.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 규정의 SEQ_HISTORY ID (search_regulations 또는 list_regulations 결과에서 확인) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden of behavioral disclosure. It does convey that the tool is a read operation ('조회') and that it returns the full text, which is useful. However, it does not mention potential errors, output format, or any permission requirements. For a simple retrieval tool this is acceptable but not rich, so a 3 is appropriate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences long, front-loaded with the primary purpose, and the second sentence provides essential usage context. Every word earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter read tool without an output schema, the description conveys the core purpose and the required input source, which is largely sufficient. The missing return field details are not critical for a 'get full text' tool, and the sibling context is handled by the 'full text' wording. It falls just short of a 5 because it doesn't explicitly describe the response structure.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the schema description already explains that the id is the SEQ_HISTORY ID from search_regulations or list_regulations. The tool description repeats this same information, adding no new meaning beyond the schema. With high schema coverage, the baseline is 3, and the description doesn't exceed it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('특정 규정의 전문을 조회합니다' – retrieves the full text of a specific regulation) and identifies the resource as a specific regulation. It also distinguishes itself from sibling tools like search_regulations/list_regulations (which find regulations) and get_regulation_article (which likely retrieves a single article) by emphasizing '전문' (full text).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly tells the agent to use an id (SEQ_HISTORY) obtained from search_regulations or list_regulations, providing clear prerequisite context for when this tool should be invoked. It doesn't explicitly contrast with get_regulation_article, but the 'full text' phrasing implies the difference, so it earns a 4 rather than a 5.
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조')를 입력하세요.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | 규정의 SEQ_HISTORY ID | |
| article | Yes | 조항 번호 (예: '제5조', '5', '제12조') |
TDQS
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 tool only retrieves a specific article, implying a read-only operation, but does not add context about authentication, error behavior, or return format. This is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences: the first states the purpose and the second gives input instructions with an example. Every word earns its place, with no wasted content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter retrieval tool with no output schema, the description is sufficient: it identifies the resource and the exact inputs needed. It does not explain return values, but given the tool's simplicity and the input clarity, this is not a critical gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds a practical example ('제5조') but does not expand on parameter semantics beyond what the schema already provides, so it does not exceed the baseline.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb '조회' (retrieve) and resource '특정 규정의 특정 조항' (specific article of a specific regulation), clearly distinguishing it from siblings like get_regulation which would retrieve the whole regulation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase '특정 조항만 조회' implies this tool is for retrieving a single article rather than full regulations, providing implicit context for when to use it. However, it does not explicitly name alternatives or exclusions, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_regulationsA
한성대학교 규정 전체 목록을 반환합니다. 기본적으로 최신 버전만 표시하며, includeOldVersions=true로 구버전도 포함할 수 있습니다.
| Name | Required | Description | Default |
|---|---|---|---|
| includeOldVersions | No | true이면 구버전 포함, false이면 최신 버전만 표시 |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations provided, so the description carries the behavioral disclosure burden. It adds value by explaining the default behavior (only latest versions) and the includeOldVersions option, which is beyond the schema. However, it does not disclose potential limitations such as pagination, rate limits, or authentication requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at two sentences. The first sentence front-loads the main purpose, and the second adds the key parameter behavior. Every word earns its place, with no fluff or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple tool with one optional parameter and no output schema. The description sufficiently covers the tool's main behavior and the optional version filter. While it could mention the return structure (e.g., list of regulation names/IDs), the simplicity of the tool makes this a minor gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides a description for the includeOldVersions parameter, so the baseline is 3. The description essentially repeats the parameter's effect (including old versions) without adding further meaning, such as default value implications or edge cases.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns the entire list of regulations (한성대학교 규정 전체 목록), using a specific verb '반환합니다' and clearly identifying the resource. It distinguishes itself from sibling tools like search_regulations, get_regulation, and get_regulation_article by explicitly indicating it returns the full list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for retrieving the complete list of regulations, contrasting with search or retrieval tools. It states the default behavior (latest versions only) and the optional parameter to include old versions, giving clear context for when to use it. However, it does not explicitly mention alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_regulationsA
한성대학교 규정을 키워드로 검색합니다. 규정명에서 키워드를 찾아 매칭되는 규정 목록을 반환합니다.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | 검색 키워드 (예: '학칙', '장학금', '교원임용') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that search is limited to regulation names and returns a list of matches, which is useful. However, it omits details like matching behavior (case sensitivity, partial matches) and whether the list is paginated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the action, no filler. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter search tool with no output schema, the description sufficiently explains the purpose and return type. Minor omission of output format details is acceptable given the simplicity, but it could mention the structure of the returned list.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides 100% coverage with a clear description of the query parameter, including examples. The tool description adds no additional parameter semantics beyond what the schema already states.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'searches' and clearly defines the resource (regulations) and scope (by keyword in regulation names). It distinguishes from sibling tools like list_regulations and get_regulation by focusing on keyword-based lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for keyword-based searching but does not explicitly contrast with alternatives or mention when not to use it. The context is clear, but it lacks explicit exclusions or alternative guidance.
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.
4 tool updates
v0.1.0- First observed
get_regulation - First observed
get_regulation_article - First observed
list_regulations - First observed
search_regulations
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: searching by keyword, listing all, retrieving full text, and retrieving a specific article. The overlap between get_regulation and get_regulation_article is intentional and well-described, so no ambiguity exists.
All tool names follow a consistent verb_noun pattern (search_*, list_*, get_*). The nouns are appropriately specific (regulations, regulation, regulation_article), and there is no mixing of conventions.
With only 4 tools, the server is tightly scoped to the domain of retrieving university regulations. This is an appropriate size; each tool serves a necessary function and none are superfluous.
The set covers the core lifecycle: discover (list/search), retrieve full text, and retrieve specific articles. A minor gap is that search only matches regulation names, not full-text content, but this can be worked around by fetching individual regulations.
Maintenance
Related MCP Connectors
Full-text search over K-IFRS/K-GAAP standards and KASB accounting Q&A for Korean accountants
Search and trace US federal rules across the Federal Register, eCFR, and Regulations.gov.
Full-text search over FSS/FSC accounting supervision documents for Korean accounting professionals
Search company disclosures and financial statements from the Korean market. Retrieve stock profile…
Related MCP Servers
- -licenseNot gradedqualityNot gradedmaintenanceEnables searching and retrieving Korean legal information including laws, court precedents, legal interpretations, and local ordinances from the Korean National Law Information Center API with intelligent search ranking.-
- FlicenseAqualityCmaintenanceEnables AI systems to search, retrieve, and analyze Korean legal information from the National Law Information API (law.go.kr), including laws, administrative rules, English translations, and law-ordinance linkages.262-
- AlicenseAqualityDmaintenanceMCP server to search and retrieve regulations from 14 Korean universities' regulation management systems. Supports querying, listing, and viewing full text or specific articles.411 npm2MIT
- AlicenseAqualityAmaintenanceEnables AI to search and retrieve regulations from Dongguk University's integrated rule management system.10MIT