Skip to main content
Glama
Izyuusya
by Izyuusya

get_population

Get population trend data for a Japanese region by specifying its name or code. No statistical table ID needed; returns a formatted markdown report from census or estimates.

Instructions

地域の人口データを自動取得する(プリセット).

統計表IDを知らなくても、地域名を指定するだけで 人口推計や国勢調査から人口推移データを取得できる。

Args: area: 地域名(例: "東京都")または地域コード(例: "13000")

Returns: 人口推移の整形済みレポート(マークダウン)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
areaYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.2

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description must carry the transparency burden. It discloses the data sources (population estimates and census) and the output format (markdown report), which is useful. However, it omits details such as error handling for invalid areas, data freshness, or whether the operation is read-only. Given the simplicity, this is adequate but not thorough.

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 Args and Returns sections. The main purpose is front-loaded, and every sentence provides necessary information. No redundant phrasing or unnecessary details.

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 single-parameter tool with an output schema, the description covers the essential aspects: what it does, how to specify the area, and the return format. It could mention edge cases like invalid area names or the time range of data, but given the simplicity and presence of an output schema, it is largely complete.

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 0%, so the description must explain the parameter. It does so clearly, stating 'area' accepts either a region name (e.g., 東京都) or a region code (e.g., 13000), with concrete examples. This fully compensates for the lack of schema description.

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 clearly states the tool retrieves population data for a region automatically, using population estimates and census data, and returns a formatted markdown report. It distinguishes itself by noting it does not require knowing the statistical table ID, which hints at an alternative but does not explicitly contrast with siblings.

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

Usage Guidelines3/5

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

It implies usage: just specify a region name or code, no need for a statistical table ID. However, it does not explicitly state when to prefer this tool over alternatives like search_statistics or get_regional_data, nor does it mention when not to use it. The guidance is implicit rather than explicit.

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