Skip to main content
Glama

check_business_registration

사업자등록번호로 사업 상태를 조회합니다.

Args:
    business_numbers: 사업자등록번호 리스트 (예: ["1234567890", "0987654321"]). 하이픈 없이 10자리 숫자. 최대 100개.

Returns:
    각 사업자의 등록 상태 (계속사업자, 휴업자, 폐업자 등)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
business_numbersYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It communicates this is a read-style lookup ('조회합니다' — queries), defines input limits (maximum 100), and enumerates expected statuses (계속사업자, 휴업자, 폐업자 등). It does not mention error handling or network dependencies, but for a simple query tool the behavioral disclosure is adequate and non-misleading.

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 compact, front-loaded with the core purpose, and then organized clearly into Args and Returns sections. Every line adds value: input format, example, limit, and expected output statuses. No redundant or vague wording is present.

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?

For a single-parameter lookup tool, the description covers everything needed to invoke it correctly: the meaning of the parameter, its format constraints, the batch limit, and the kind of result returned. Since an output schema reportedly exists, the description appropriately does not need to detail the full return structure.

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?

The schema provides no description coverage for business_numbers, but the description fully compensates: it identifies the parameter, gives a concrete example, requires 10-digit numeric strings without hyphens, and sets a maximum of 100 items. This is exactly the kind of semantic detail an agent needs beyond the raw array-of-strings 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 states a specific action and resource: '사업자등록번호로 사업 상태를 조회합니다' (queries business status by business registration number). This clearly distinguishes it from sibling tools like get_air_quality or get_weather_forecast, which cover entirely different domains.

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 makes the use case obvious: when a caller has a Korean business registration number and wants to know the business status. It also gives concrete input constraints (10 digits, no hyphens, max 100 numbers), giving clear context. It does not explicitly name alternatives, but the sibling tools are unrelated, so no exclusion is necessary.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.