Skip to main content
Glama

maps_around_search

Search for nearby points of interest (POI) around a center coordinate within a specified radius. Filter results by keywords, types, or region to locate relevant places for navigation or analysis.

Instructions

以某坐标为中心,在指定半径内搜索周边 POI。(搜索POI 2.0,v5接口)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typesNo(可选)POI 类型代码,多个用"|"分隔
radiusNo(可选)搜索半径,单位米,默认 5000,最大 50000
regionNo(可选)搜索区划,增加指定区域内数据召回权重
keywordsNo(可选)搜索关键词
locationYes中心点坐标,格式"经度,纬度"
page_numNo(可选)页码,默认 1
sortruleNo(可选)排序规则:distance(按距离,默认)、weight(综合排序)
page_sizeNo(可选)每页结果数,默认 10,最大 25
city_limitNo(可选)是否严格限定在 region 区域内,true/false,默认 false
show_fieldsNo(可选)额外返回字段,多个用","分隔。可选:business、children、indoor、navi、photos

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/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 full disclosure burden. It adds API-version context (POI 2.0, v5) and makes clear this is a read/search operation, but it does not mention result shape, pagination, or how optional parameters interact.

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 one front-loaded sentence that states the core operation first. The parenthetical API version is useful but slightly secondary; it is concise overall with no filler.

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?

It is minimally viable: core semantics and schema coverage enable a correct call, but with 10 parameters, no annotations, and no output schema, the description alone leaves gaps around return values and when to set region/city_limit/sortrule.

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 each parameter and its defaults. The description adds no extra semantic value for the parameters, which warrants the baseline 3.

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 names a concrete operation: search POIs centered on a coordinate within a radius. It clearly distinguishes this from siblings like maps_text_search or maps_geo by the geospatial scope.

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?

It supplies clear context: use when the user has a center coordinate and wants nearby POIs within a radius. It does not explicitly name alternatives or exclusions, but the coordinate-scoped framing makes the intended use obvious.

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