We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5150c60 commit e59385aCopy full SHA for e59385a
1 file changed
src/tools/maps/searchNearby.ts
@@ -9,7 +9,7 @@ const SCHEMA = {
9
center: z.object({
10
value: z.string().describe("Address, landmark name, or coordinates (coordinate format: lat,lng)"),
11
isCoordinates: z.boolean().default(false).describe("Whether the value is coordinates"),
12
- }).describe("Search center point").example({"value": "49.3268778,-123.0585982", "isCoordinates": true}),
+ }).describe("Search center point (e.g. value: 49.3268778,-123.0585982, isCoordinates: true)"),
13
keyword: z.string().optional().describe("Search keyword (e.g., restaurant, cafe, hotel)"),
14
radius: z.number().default(1000).describe("Search radius in meters"),
15
openNow: z.boolean().default(false).describe("Only show places that are currently open"),
0 commit comments