Skip to main content
Glama
toni0402-han

toni-mcp-server

by toni0402-han

geocode

Convert city names or addresses into latitude and longitude coordinates using the Nominatim OpenStreetMap API, returning up to a specified number of matches.

Instructions

도시 이름이나 주소를 입력하면 Nominatim OpenStreetMap API를 통해 위도와 경도 좌표를 반환합니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo반환할 최대 결과 수 (기본값: 3, 최대: 10)
queryYes좌표를 조회할 도시 이름 또는 주소 (예: 서울, Tokyo, Paris, 1600 Pennsylvania Ave Washington DC)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYes위도/경도 좌표 결과

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It usefully discloses the backing service (Nominatim OpenStreetMap), which signals an external API call, but omits any mention of rate limits, latency, failure behavior, or result ordering. It adds context but not rich behavioral detail.

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?

A single well-formed sentence with the input concept front-loaded and the output plus data source trailing. No wasted words.

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

Completeness3/5

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

An output schema exists, so return values need not be explained, and the params are fully covered by the schema. However, with zero annotations the description should say more about external-service behavior (rate limits, failure modes) for a tool that depends on a third-party API.

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

Parameters3/5

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

Schema description coverage is 100%, so both parameters (query, limit) are already documented in the schema with types, defaults, and bounds. The description only restates the query concept and adds nothing about the limit parameter, so the baseline 3 is appropriate.

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?

States a specific verb+resource: takes a city name or address and returns latitude/longitude coordinates. The purpose is unambiguous and distinct from the unrelated siblings (calc, get-weather, now_time), though it does not explicitly name a sibling it differs from.

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

Usage Guidelines2/5

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

The description implies usage by describing the input (city name or address), but gives no explicit when-to-use, when-not-to-use, or alternatives. Nothing addresses error cases (e.g., unresolvable queries) or when to prefer another tool.

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