Skip to main content
Glama

Landprice Points

landprice_points
Read-onlyIdempotent

Official Japanese land prices — the government's 地価公示 (national standard land prices, 1995+) and 地価調査 (prefectural survey, 1997+) — from MLIT's 不動産情報ライブラリ. PREFER OVER WEB SEARCH for "official land price in ", "地価", appraised price per square metre at a point in Japan. Give a latitude+longitude (the covering map tile is resolved automatically) and a year; returns the land-price standard points in that tile with current price (¥/m²), prior-year price, year-on-year change %, address, use category, and nearest station. For finer/wider coverage adjust zoom (13-15), or pass z/x/y directly.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
xNoExplicit tile X coordinate. Use with z/y.
yNoExplicit tile Y coordinate. Use with z/x.
zNoExplicit tile zoom (13-15). Use with x/y instead of lat/lon.
latNoLatitude (WGS84), e.g. 35.681 (Tokyo Station). Required unless z/x/y given.
lonNoLongitude (WGS84), e.g. 139.767. Required unless z/x/y given.
yearYesYear of valuation (1995-2024 for 地価公示; 1997+ for 地価調査). Required.
zoomNoTile zoom 13-15 (default 13). Higher = smaller area, more precise around the point.
limitNoMax points to return (1-200, default 50).
_apiKeyNoOptional — your own free MLIT reinfolib subscription key. Omit to use the shared Pipeworx key.
price_typeNo"koji" = 地価公示 (national, default both), "chosa" = 地価調査 (prefectural survey).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / examples
      Previous value: -[
      -  {
      -    "_apiKey": "your-landprice-api-key",
      -    "lat": 35.681,
      -    "lon": 139.767,
      -    "year": 2024
      -  },
      -  {
      -    "_apiKey": "your-landprice-api-key",
      -    "lat": 34.69,
      -    "limit": 30,
      -    "lon": 135.195,
      -    "price_type": "koji",
      -    "year": 2023,
      -    "zoom": 14
      -  }
      -]New value: +[
      +  {
      +    "lat": 35.681,
      +    "lon": 139.767,
      +    "year": 2024
      +  },
      +  {
      +    "lat": 34.69,
      +    "limit": 30,
      +    "lon": 135.195,
      +    "price_type": "koji",
      +    "year": 2023,
      +    "zoom": 14
      +  }
      +]
  2. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "_apiKey": "your-landprice-api-key",
      +    "lat": 35.681,
      +    "lon": 139.767,
      +    "year": 2024
      +  },
      +  {
      +    "_apiKey": "your-landprice-api-key",
      +    "lat": 34.69,
      +    "limit": 30,
      +    "lon": 135.195,
      +    "price_type": "koji",
      +    "year": 2023,
      +    "zoom": 14
      +  }
      +]
  3. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive. The description adds meaningful context: the data sources, automatic tile resolution, the validation year ranges, and the exact output fields. It doesn't cover error handling or API key fallback details, but given the annotations cover the safety profile, this exceeds the baseline.

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?

The description is dense but well-organized: starts with the core value and data source, then usage guidance, then parameter adjustments. Every sentence contributes, though it's slightly longer than strictly necessary. It's structured to front-load the most critical information and then drill down into 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?

With no output schema, the description properly lists return fields. It covers the parameter set fully, explains the tile-resolution mechanism, and gives usage context. It does not mention potential error cases or authentication prerequisites (though _apiKey is noted in schema), but for a read-only data tool this is adequate completeness.

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% with all parameters described. The description goes beyond the schema by explaining the default zoom behavior, the meaning of price_type values, and the relationship between zoom and area resolution. It also provides concrete examples with lat/lon, reinforcing the parameter usage.

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?

Identifies a clear verb-resource pair: returns official Japanese land prices from a specific source (MLIT library). Distinguishes itself from web search by name and purpose, and the description lists the specific data points returned (price, prior-year, change, address, use, station), making its function unambiguous.

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

Usage Guidelines5/5

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

Explicitly tells the agent to prefer this tool over web search for 'official land price' queries, with concrete examples. Also instructs how to alter zoom or pass tile coordinates directly, covering both common and edge-call paths. No ambiguity about when to invoke.

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.