places-search
Find places based on text queries, location, and radius using MCP Server Boilerplate. Ideal for integrating location-based search into AI assistants or custom tools.
Instructions
Search for places using text query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location | No | Bias results around this location (e.g., 'lat,lng') | |
query | Yes | The search query | |
radius | No | Search radius in meters |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"location": {
"description": "Bias results around this location (e.g., 'lat,lng')",
"type": "string"
},
"query": {
"description": "The search query",
"type": "string"
},
"radius": {
"description": "Search radius in meters",
"type": "number"
}
},
"required": [
"query"
],
"type": "object"
}