OpenStreetMap MCP Server v2
OpenStreetMap (OSM) MCP Server v2
An OpenStreetMap MCP server implementation that enhances LLM capabilities with location-based services and geospatial data.
This is a maintained fork. The original project is jagan-shanmugam/open-streetmap-mcp by Jagan Shanmugam, who designed and wrote all of the tools here. Upstream has had no commits since July 2025 and no longer starts against the current
mcpSDK, so this fork exists to keep it working and to review and land community contributions. Issues and pull requests are welcome.
What changed in v2
Works with
mcp2.x. The SDK renamedFastMCPtoMCPServer;uvx osm-mcp-servernow fails at import. This fork targetsmcp>=2.0.Fixed Overpass
406 Not Acceptable. overpass-api.de rejects the oldUser-Agent; every request now sendsosm-mcp-server-v2/<version>.Fixed
search_categorywith subcategories (upstream #6 by Jagan Shanmugam): Overpass QL has noorinside a tag filter; a regex filter is used instead.Gemini CLI compatibility (upstream #13 by wb1016):
suggest_meeting_pointtakes a typed{latitude, longitude}model so the schema has noadditionalProperties.HTTP transport and Docker (upstream #10 by robertlestak and #11 by JumpLink):
--transport stdio|sse|streamable-http,--host,--port, plus aDockerfile.Progress and log messages from tools are now actually delivered (they were never awaited).
OVERPASS_API_URLlets you point at an Overpass mirror or self-hosted instance.Tests (
uv run pytest) and CI.
Demo
Meeting Point Optimization

Neighborhood Analysis

Parking Search

Installation
In MCP Hosts like Claude Desktop, Cursor, Windsurf, etc.
Requires Python 3.13+ and uv.
"mcpServers": { "osm-mcp-server": { "command": "uvx", "args": [ "osm-mcp-server-v2" ] } }Until the package is on PyPI, run it straight from GitHub:
"mcpServers": { "osm-mcp-server": { "command": "uvx", "args": [ "--from", "git+https://github.com/ogSINGH/open-streetmap-mcp-v2", "osm-mcp-server" ] } }
HTTP transport
osm-mcp-server --transport streamable-http --host 127.0.0.1 --port 8000The MCP endpoint is then http://127.0.0.1:8000/mcp. --transport sse is also available. The server binds to
localhost by default; there is no authentication, so only expose it on 0.0.0.0 behind something that adds it.
Docker
docker build -t osm-mcp-server-v2 .
docker run -p 8000:8000 osm-mcp-server-v2
# custom port
docker run -p 3004:3004 -e PORT=3004 osm-mcp-server-v2The image serves Streamable HTTP on 0.0.0.0:$PORT (default 8000) as a non-root user.
Configuration
Variable | Default | Purpose |
|
| Overpass endpoint. The public instance rate-limits aggressively; point this at a mirror (for example |
|
| Per-request timeout in seconds for all upstream HTTP calls. |
MCP hosts launch the server as a subprocess and forward only a minimal environment, so set these in the host config rather than your shell:
"osm-mcp-server": {
"command": "uvx",
"args": ["osm-mcp-server-v2"],
"env": { "OVERPASS_API_URL": "https://overpass.openstreetmap.fr/api/interpreter" }
}All requests to Nominatim, Overpass, OSRM and the tile servers carry a User-Agent of osm-mcp-server-v2/<version>, as their usage policies require.
Features
This server provides LLMs with tools to interact with OpenStreetMap data, enabling location-based applications to:
Geocode addresses and place names to coordinates
Reverse geocode coordinates to addresses
Find nearby points of interest
Get route directions between locations
Search for places by category within a bounding box
Suggest optimal meeting points for multiple people
Explore areas and get comprehensive location information
Find schools and educational institutions near a location
Analyze commute options between home and work
Locate EV charging stations with connector and power filtering
Perform neighborhood livability analysis for real estate
Find parking facilities with availability and fee information
Components
Resources
The server implements location-based resources:
location://place/{query}: Get information about places by name or addresslocation://map/{style}/{z}/{x}/{y}: Get styled map tiles at specified coordinates
Tools
The server implements several geospatial tools:
geocode_address: Convert text to geographic coordinatesreverse_geocode: Convert coordinates to human-readable addressesfind_nearby_places: Discover points of interest near a locationget_route_directions: Get turn-by-turn directions between locationssearch_category: Find places of specific categories in an areasuggest_meeting_point: Find optimal meeting spots for multiple peopleexplore_area: Get comprehensive data about a neighborhoodfind_schools_nearby: Locate educational institutions near a specific locationanalyze_commute: Compare transportation options between home and workfind_ev_charging_stations: Locate EV charging infrastructure with filteringanalyze_neighborhood: Evaluate neighborhood livability for real estatefind_parking_facilities: Locate parking options near a destination
Local Testing
Running the Server
To run the server locally:
Install dependencies (creates
.venv):
uv syncRun the tests:
uv run pytestStart the server over stdio:
uv run osm-mcp-serverTesting with Example Clients
The repository includes two example clients in the examples/ directory:
Basic Client Example
client.py demonstrates basic usage of the OSM MCP server:
uv run python examples/client.pyThis will:
Connect to the locally running server
Get information about San Francisco
Search for restaurants in the area
Retrieve comprehensive map data with progress tracking
LLM Integration Example
location_assistant_client.py provides a helper class designed for LLM integration:
uv run python examples/location_assistant_client.pyThis example shows how an LLM can use the Location Assistant to:
Get location information from text queries
Find nearby points of interest
Get directions between locations
Find optimal meeting points
Explore neighborhoods
Writing Your Own Client
See examples/client.py: it spawns the server over stdio with mcp.client.stdio.stdio_client,
wraps it in ClientSession, and calls tools with session.call_tool(name, arguments).
Claude Desktop config for local server
On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
"mcpServers": {
"osm-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/path/to/osm-mcp-server",
"run",
"osm-mcp-server"
]
}
}Development
Building and Publishing
To prepare the package for distribution:
Sync dependencies and update lockfile:
uv syncBuild package distributions:
uv buildThis will create source and wheel distributions in the dist/ directory.
Publish to PyPI: push a
v*tag..github/workflows/publish-to-pypi.ymlbuilds and publishes with PyPI trusted publishing (no token needed once the publisher is configured on PyPI for this repo).
Debugging
Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.
You can launch the MCP Inspector via npm with this command:
npx @modelcontextprotocol/inspector uv --directory /path/to/osm-mcp-server run osm-mcp-serverUpon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
Credits
Jagan Shanmugam (@jagan-shanmugam) — original author of open-streetmap-mcp, including every tool and resource here.
Contributors whose upstream pull requests were reviewed and adapted into v2: Sesame2 (#7, superseded by #6), robertlestak (#10), JumpLink (#11), wb1016 (#13).
Maintained by @ogSINGH.
Licensed under the MIT License, same as upstream. See LICENSE.