Skip to main content
Glama
KevinWangKaiYu

Easy Search Along The Way

周边搜索

search_nearby
Read-only

Search for nearby shops, gas stations, or other POIs by address or GPS coordinates. Returns a distance-sorted list within a specified radius.

Instructions

根据输入的位置,查询周边指定类型的商店 / POI,返回具体列表(按距离由近到远)。 location 支持两种写法:地址文本(如「济南市历下区泉城路」),或「经度,纬度」(如 117.120128,36.652069)。 keyword 是高德 POI 关键词,例如:商店、超市、便利店、加油站、山姆超市、餐厅、充电站、停车场、酒店。 需要先配置高德 Key,未配置时调用 set_amap_key 即可。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityNo城市名。当地址有歧义时可指定,如「济南」
limitNo最多返回多少条
radiusNo搜索半径,单位米,最大 50000
keywordNo要搜索的 POI 关键词,如 商店 / 超市 / 加油站 / 山姆超市商店
locationYes中心点位置:地址文本,或「经度,纬度」

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

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 openWorldHint=true, so safety and external-network behavior are covered. The description adds real value beyond them: the results come back as a list ordered from nearest to farthest, and the tool depends on an API key being configured first.

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?

Front-loads the purpose, then location formats, then keyword examples, then the key prerequisite. Every sentence is relevant and there is no filler, though the keyword enumeration is somewhat list-heavy.

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?

All five parameters are documented in the schema, the return ordering is described despite there being no output schema, and the key prerequisite is spelled out. An agent has everything needed to invoke this correctly.

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 the schema already documents city, limit, radius, keyword, and location with defaults and bounds. The description largely restates the location formats and keyword examples, adding only a concrete coordinate sample. Baseline 3 is appropriate when the schema carries the load.

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 and resource: query nearby POIs of a given type around an input location, returned sorted by distance. It is clear and concrete, but it does not explicitly contrast itself with the sibling search_along_route, leaving that differentiation to the name alone.

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?

Provides a concrete prerequisite and routing instruction: an Amap Key must be configured, and if not, call set_amap_key first. That is genuinely useful context. It does not, however, say when to prefer this over search_along_route.

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

Deploy Server

Other Tools