MapTiler MCP server. Geocoding, elevation, IP geolocation and coordinate transforms from the MapTiler Cloud API.
Add to your MCP config, then reload & authorize:
{
"mcpServers": {
"maptiler": {
"url": "https://maptiler.usefulapi.io/mcp"
}
}
}| Tool | Type | What it does |
|---|---|---|
maptiler_geocode | read | Geocode Forward-geocode a place, address, or POI by name and get back matching locations as GeoJSON features, with optional bounding-box, proximity, language, country, and place-type filters. |
maptiler_reverse_geocode | read | Reverse geocode Reverse-geocode a longitude/latitude coordinate into the place(s) located there, returned as GeoJSON features with optional language and place-type filtering. |
maptiler_batch_geocode | read | Batch geocode Forward-geocode up to 50 query strings in a single request, returning one GeoJSON FeatureCollection per query in order for efficient bulk address lookups. |
maptiler_geolocate_ip | read | Geolocate ip Geolocate the IP address making the request, returning its approximate location (and optional elevation) — useful for coarse region detection from the calling server. |
maptiler_get_elevation | read | Get elevation Look up ground elevation at up to 50 coordinates at once, returning an array of [lng, lat, elevation] triples in meters or feet. |
maptiler_transform_coordinates | read | Transform coordinates Transform up to 50 coordinate pairs from one coordinate reference system to another by EPSG code, with optional forced transformation operations. |
maptiler_search_coordinate_systems | read | Search coordinate systems Search MapTiler's CRS/EPSG database by free text or key:value filters (e.g. 'code:4326', 'kind:CRS-PROJCRS'), optionally including transformations and WKT/Proj4 export strings. |
maptiler_get_data_features | read | Get data features Fetch the full GeoJSON FeatureCollection of a MapTiler-hosted dataset by its data id, pulling your uploaded geospatial data straight into the conversation. |
maptiler_usage_status | Usage status (free-tier meter) Report the caller's current free-tier usage this month: calls used, monthly limit, remaining, and whether the cap is reached. Read-only; does not count against the meter. | |
maptiler_upgrade | Upgrade to Pro (unlimited) Subscribe to the Pro plan for UNLIMITED MapTiler tool calls (the free tier caps monthly usage). Choose monthly ($9/month) or yearly ($90/year — 2 months free) billing. Returns a Stripe Checkout link to open in your browser; after payment your account upgrades automatically. Read-only; does not count against the meter. |
| Plan | Price | Limit |
|---|---|---|
| Free | $0 | 100 tool calls / month |
| Pro | $9/mo · $90/yr | Unlimited |
This is a Model Context Protocol endpoint — meant to be connected from an AI client, not opened in a browser. An invalid_token response at the URL is the auth gate working as designed; clients authenticate automatically.