search_places
Search for specific categories of points of interest like gas stations, restaurants, or charging stations near a given location. Use this tool when you need a particular type of place.
Instructions
CATEGORY-specific POI search near a point — gas stations, truck stops, restaurants, charging stations, etc. Use this when the user has a specific TYPE of place in mind. For broader DISCOVERY (e.g. 'cities within 50 miles'), use explore instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- bin/server.js:68-73 (registration)Tool registration for 'search_places' in the TOOLS array. This is a static catalog adapter — the tool name is registered here with description and inputSchema, but actual execution is not implemented locally. The CallToolRequestSchema handler (line 114) returns a redirect message pointing users to the hosted MCP server at https://geo.thinair.co/mcp.
{ name: "search_places", description: "CATEGORY-specific POI search near a point — gas stations, truck stops, restaurants, charging stations, etc. Use this when the user has a specific TYPE of place in mind. For broader DISCOVERY (e.g. 'cities within 50 miles'), use `explore` instead.", inputSchema: { type: "object" }, },