Location tools for AI agents
Connect MCP-compatible clients to LatLng geocoding, reverse geocoding, places search, nearby places, and place categories. Use the hosted endpoint or install the stdio server with npm.
{
"mcpServers": {
"latlng": {
"command": "npx",
"args": ["-y", "@latlng/mcp-server"],
"env": {
"LATLNG_API_KEY": "latlng_your_server_key"
}
}
}
}
Geocode addresses
Turn addresses, landmarks, and place names into coordinates backed by OpenStreetMap data.
Reverse geocode
Convert latitude and longitude pairs into readable addresses and place context.
Search places
Find POIs and named places with structured results agents can use in downstream workflows.
Nearby places
Discover restaurants, stores, landmarks, and other POIs around a coordinate.
Place categories
List supported place categories so agents can build valid nearby searches.
Hosted or local
Use the remote MCP endpoint or the npm stdio package, depending on your client.
Endpoints
https://mcp.latlng.work/mcpnpx -y @latlng/mcp-serverAvailable Tools
geocode_addressConvert an address or place name to latitude and longitude.reverse_geocodeConvert coordinates into a human-readable address.search_placesSearch places by name or text query.find_nearby_placesFind points of interest near a coordinate with radius and category filters.list_place_categoriesReturn supported place categories for nearby place searches.Authentication
latlng_. Public maps keys that start with pk_latlng_ are for browser-side maps and are rejected by the MCP server.Directory Metadata
| Name | LatLng MCP server |
|---|---|
| Website | https://www.latlng.work |
| MCP endpoint | https://mcp.latlng.work/mcp |
| Package | @latlng/mcp-server |
| Categories | Location Services, Maps, Geocoding, Places API, Developer Tools |
| Repository | https://github.com/latlng-work/latlng-mcp |
| License | MIT |
Build location-aware agents
Give agents reliable map and place lookup tools without wiring geocoding APIs by hand. Start with a free LatLng Server Key and connect your MCP client.