Skip to main content
Glama

XBOSS

전자세금계산서 합계 조회

hometax__etax__invoice__search_summary
Read-only

REQUIRES prior hometax__session__login call with same account_link_id. Search e-tax invoice summary (totals). Choose ONE date mode: (1) daily: set date_type='01' and start_date+end_date YYYYMMDD. (2) monthly: set date_type='02' and year+month. (3) quarterly: set date_type='03' and year+quarter. search_type '01'=issued(매출), '02'=received(매입).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
yearNoYear (e.g. 2025). Required when date_type='02' (monthly) or '03' (quarterly).
monthNoMonth 1-12. Required when date_type='02' (monthly).
quarterNoQuarter 1-4. Required when date_type='03' (quarterly).
end_dateNoEnd date YYYYMMDD (e.g. 20250930). Required when date_type='01' (daily).
page_numNoPage number (default 1)
date_typeNoDate mode: '01'=daily(default, needs start_date/end_date), '02'=monthly(needs year+month), '03'=quarterly(needs year+quarter).
page_sizeNoPage size (default 10)
start_dateNoStart date YYYYMMDD (e.g. 20250701). Required when date_type='01' (daily).
search_typeNo'01'=issued(매출, default), '02'=received(매입).
account_link_idNoAccount link ID (UUID v4). Optional — the server auto-resolves from your API key when omitted. Provide explicitly only when you have multiple certificates for the same provider. Each institution has a separate ID (Hometax != NHIS != NPS != FourInsure).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds genuinely useful behavioral context beyond those annotations: the hard session prerequisite and the conditional dependency between date_type and the other parameters. It does not contradict the annotations in any way.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One dense paragraph front-loaded with the critical precondition ('REQUIRES...') before the purpose. The numbered date modes are easy to scan. It is slightly packed — the parameter requirements are crammed into parentheticals — but no sentence is wasted and the essential info is immediate.

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

Completeness4/5

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

For a 10-parameter tool with no output schema, the description covers the three key agent-facing needs: the login prerequisite, how to pick a date mode, and the search_type semantics. It handles the conditional-parameter complexity well. Minor gaps: enum defaults (date_type='01', search_type='01') are only implied, and return values are unspecified, but the schema carries most of the remaining burden.

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

Parameters4/5

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

Schema coverage is 100%, so the schema individually documents all 10 parameters, setting a baseline of 3. The description earns its keep by explaining the cross-parameter combinatorics that the flat schema cannot express — that date_type='01' REQUIRES start_date+end_date, '02' REQUIRES year+month, and '03' REQUIRES year+quarter, plus the issued/received mapping of search_type. This relational meaning is above baseline value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb+resource ('Search e-tax invoice summary (totals)') and the title '전자세금계산서 합계 조회' reinforces the aggregation purpose. It is clearly a read-only summary search. However, it does not explicitly distinguish itself from the near-sibling hometax__etax__invoice__search_statistics, which sounds functionally similar, so an agent could hesitate between the two.

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 is rich in usage context: it mandates a prior login ('REQUIRES prior hometax__session__login call with same account_link_id') and precisely prescribes the three mutually exclusive date modes with their required parameter combinations. It does not, however, state when NOT to use this tool or name alternative tools (e.g., search_list vs search_summary), so the exclusion dimension is absent.

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.

Resources