Search_for_places_by_text
Find locations by entering a text string, with options to specify language and geographic bounds for precise results. Designed for API-Market MCP Server integration.
Instructions
Search for places by text string
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bounds | No | The bounding box for results preference. Format: south,west,north,east. Coordinates: decimal degrees. | |
language | No | The two-letter language code in which to return results (ISO 639-1) | |
text | Yes | A text string on which to search |
Input Schema (JSON Schema)
{
"properties": {
"bounds": {
"description": "The bounding box for results preference. Format: south,west,north,east. Coordinates: decimal degrees.",
"type": "string"
},
"language": {
"description": "The two-letter language code in which to return results (ISO 639-1)",
"type": "string"
},
"text": {
"description": "A text string on which to search",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}