Easy Search Along The Way
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AMAP_KEY | No | 你的高德Web服务Key。用于调用高德地图Web服务API。可以通过环境变量传入(推荐),也可以不填,之后由set_amap_key工具录入。env变量优先级高于本地配置文件。 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_nearbyA | 根据输入的位置,查询周边指定类型的商店 / POI,返回具体列表(按距离由近到远)。 location 支持两种写法:地址文本(如「济南市历下区泉城路」),或「经度,纬度」(如 117.120128,36.652069)。 keyword 是高德 POI 关键词,例如:商店、超市、便利店、加油站、山姆超市、餐厅、充电站、停车场、酒店。 需要先配置高德 Key,未配置时调用 set_amap_key 即可。 |
| search_along_routeA | 沿驾车路线搜索目标 POI,返回沿途范围内的目标列表(按距起点的路程从近到远排序)。 origin 起点、destination 终点:都支持地址文本或「经度,纬度」。 distance 是沿途搜索半径(单位米):以驾车路线为中心线,向两侧各扩 distance 米的范围。例如 distance=2000 表示搜沿途左右各 2 公里。 target 是目标关键词,例如:加油站、商店、超市、山姆超市、服务区、充电站、餐厅。 实现方式:先用 /v3/direction/driving 拿到路线折线,再沿折线按间隔取采样点,对每个采样点做 /v3/place/around 周边搜索,最后按 POI 去重并排序。 需要先配置高德 Key,未配置时调用 set_amap_key 即可。 |
| set_amap_keyA | 录入并校验高德地图「Web服务」类型的 Key。 会先拿一个测试地址真实调一次高德接口,校验通过才写入本地配置文件,之后所有查询自动使用。 用户提供 Key 后调用本工具即可完成认证,不需要修改客户端配置或重启。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
The two search tools have clearly distinct purposes: one searches around a point, the other along a route. The configuration tool is unrelated to searching. No ambiguity between tools.
All tool names follow the same snake_case verb_noun pattern: search_nearby, search_along_route, set_amap_key. Consistent and predictable.
Three tools is well-scoped for a location search server: one for nearby POI, one for route-based POI, and one for API key configuration. Each tool has a clear role.
The tool surface covers the core use case of searching for POIs both around a location and along a route, plus necessary setup. No obvious missing operations for the stated purpose.