mapbox-mcp-server

mapbox_geocoding

Search for places and convert addresses into coordinates

Input Schema

NameRequiredDescriptionDefault
fuzzyMatchNoEnable/disable fuzzy matching
languageNoLanguage of the search results
limitNoLimit the number of results
searchTextYesThe search text to geocode
typesNoFilter results by feature types

Input Schema (JSON Schema)

{ "properties": { "fuzzyMatch": { "default": true, "description": "Enable/disable fuzzy matching", "type": "boolean" }, "language": { "description": "Language of the search results", "pattern": "^[a-z]{2}$", "type": "string" }, "limit": { "default": 5, "description": "Limit the number of results", "maximum": 10, "minimum": 1, "type": "number" }, "searchText": { "description": "The search text to geocode", "type": "string" }, "types": { "description": "Filter results by feature types", "items": { "enum": [ "country", "region", "postcode", "district", "place", "locality", "neighborhood", "address", "poi" ], "type": "string" }, "type": "array" } }, "required": [ "searchText" ], "type": "object" }