Skip to main content
Glama
buenosiempre-cmd

dongguk-rule-mcp

applicable_rule

Read-onlyIdempotent

Find a past version of a Dongguk University regulation by date, returning the historical text and a change summary versus the current version. Supports lookup by rule name or ID.

Instructions

기준일(date) 이전에 개정된 동국대학교 규정 후보를 찾아, 해당 시점 본문과 현행 대비 변경 요약을 반환합니다. 소급 업무·감사 대응·과거 지급기준 확인용. HISTORY_ID를 몰라도 날짜만으로 조회됩니다. 개정일과 실제 시행일이 다를 수 있음을 항상 안내합니다. 최신 규정 질문에는 lookup_dongguk_rule을 사용하세요.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYes기준일. YYYY-MM-DD / YYYY.MM.DD / YYYYMMDD. 예: 2024-03-15
law_idNoLAW_ID. rule_keyword 대신 사용 가능
articleNo특정 조문만. 예: 15, 제10조의2, 부칙 제2조
max_changesNo변경 요약 최대 조문 수. 기본 10, 최대 30
rule_keywordNo규정명. law_id가 있으면 생략 가능. 예: 여비규정
compare_with_currentNo현행 대비 변경 요약 포함 여부

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes도구 실행 성공 여부
dataNo성공 시 구조화 결과
toolYes실행한 도구 이름
errorNo실패 시 구조화 오류

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.10.0

TDQS

A4.6/5.0
Behavior4/5

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

The description reveals that it returns 'candidate' rules (implying possible multiple matches) and always notifies that revision date and effective date may differ. It also mentions the change summary behavior when compare_with_current is true, going beyond the basic read-only and idempotent annotations.

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 concise, front-loaded with the main purpose, followed by use cases and a note. It does not contain redundant information and is well-structured for quick understanding.

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

Completeness5/5

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

Given the presence of an output schema (not shown here) and the thorough parameter explanations, the description is complete for an agent to use the tool. It covers all necessary aspects: what it does, when to use it, key caveats, and the primary alternative.

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

Parameters5/5

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

All six parameters are described with meaningful context beyond the schema: date format, the relationship between law_id and rule_keyword, specific article examples, max_changes default and limit, and the boolean compare_with_current. The description also explains that date can be used without knowing HISTORY_ID, adding semantic clarity.

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 the tool returns candidate rules revised before a base date, along with the text at that time and a summary of changes. It also explicitly distinguishes from lookup_dongguk_rule for latest rules, making its purpose distinct among siblings.

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 specific use cases (retroactive work, audit responses, checking past payment standards) and states when not to use it (for latest rules, use lookup_dongguk_rule). However, it does not mention other alternatives like compare_rule_versions or list_rule_history, but the primary scenarios are well covered.

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