Skip to main content
Glama
musasister

commercial-registry

by musasister

get_precedent_by_number

Look up a specific Korean commercial registration precedent using its precedent number. Get the official ruling from the Supreme Court portal for legal research.

Instructions

예규번호로 특정 상업등기선례를 조회합니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
regNoYes예규번호 (예: 제 2-116호, 제 1-346호)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

No annotations exist, so the description carries the full burden. The verb '조회' conveys a read-only lookup, which is the most important behavioral trait for a getter. However, it does not disclose not-found behavior, whether the lookup is exact-match only, or any constraints beyond the number.

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?

A single front-loaded sentence with zero filler. The core action, resource, and lookup key are all present, and the sentence earns its place for a one-parameter tool.

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 (one fully documented parameter, no nested objects), so the description is largely sufficient for calling it. With no output schema and no annotations, the description could still note what is returned and what happens when the number matches nothing, leaving a modest gap.

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% and the regNo property already includes a description with format examples (제 2-116호). The description merely restates that the lookup is by number, adding no new meaning beyond the schema, so the baseline 3 for high coverage applies.

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 states a specific verb (조회/retrieve), a specific resource (특정 상업등기선례/specific commercial registration precedent), and the keying method (예규번호로/by precedent number). The explicit lookup key distinguishes this from siblings search_precedents and list_precedents, so an agent can select it correctly without opening the schema.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus search_precedents (keyword queries) or list_precedents (browsing). The intended context — 'you already know the exact precedent number' — is only implied by the tool name and the single required parameter, never explicitly stated.

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