Skip to main content
Glama
seolcoding

korean-stat-mcp

by seolcoding

read_stored_data

Read stored Korean statistical data with optional chunking for large datasets.

Instructions

저장된 원본 데이터를 읽습니다.

대용량 데이터는 청크 단위로 읽을 수 있습니다. chunk_index를 지정하지 않으면 전체 데이터를 반환합니다.

Args: data_id: 데이터 ID (list_stored_data 또는 get_statistics_data에서 확인) chunk_index: 청크 인덱스 (0부터 시작, 선택) chunk_size: 청크 크기 (기본 50건)

Returns: { "data_id": "20231213_abc12345", "meta": { "tbl_id": "DT_1B040A3", "tbl_nm": "행정구역별 인구수", "record_count": 1000 }, "data": [...], # 요청한 데이터 "chunk_info": { # chunk_index 지정 시 "chunk_index": 0, "chunk_size": 50, "total_chunks": 20, "has_more": True } }

Example: # 전체 데이터 읽기 >>> read_stored_data("20231213_abc12345")

# 청크별로 읽기
>>> read_stored_data("20231213_abc12345", chunk_index=0)
>>> read_stored_data("20231213_abc12345", chunk_index=1)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
data_idYes
chunk_sizeNo
chunk_indexNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

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

The description discloses chunking behavior, default chunk size, and return format including meta, data, and chunk_info. It mentions that without chunk_index, all data is returned. No annotations are provided, but the description adequately covers behavioral traits.

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 and well-structured with clear sections (Args, Returns, Example). Every sentence adds value, and the example clarifies usage without redundancy.

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 moderate complexity, the description covers all necessary aspects: parameter explanations, return format with example, and reference to sibling tools for obtaining data_id. It is complete despite missing annotations.

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 description coverage is 0%, so the description compensates by explaining each parameter: data_id source, chunk_index start and optionality, chunk_size default. This adds meaning beyond the schema alone.

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 the purpose: '저장된 원본 데이터를 읽습니다' (reads stored original data). It specifies the resource (stored data) and verb (read), and distinguishes from sibling tools that focus on statistics or browsing.

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 explains when to use the tool (to read stored data, with chunking for large data) and provides examples. It does not explicitly state when not to use or compare to alternatives, but the context is clear.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/seolcoding/korean-stat-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server