geo-mcp
Provides tools for geocoding, routing, and exploring points of interest using OpenStreetMap data, enabling multimodal (walking and transit) navigation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@geo-mcpPlan a walking route from Central Park to Times Square"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
geo-mcp
OSM-backed multimodal (walk + transit) navigation MCP server. Gives LLM apps a structured graph of the city so they can geocode, route, explore POIs, and reason about urban layout without proprietary map APIs.
Features
Clean Architecture / DDD (Python 3.14): domain pathfinding stays free of OSM/NetworkX details
Multimodal graph: OSMnx walking network + OSM transit stops/routes + transfer edges
Disk cache: bbox-keyed local graph cache under
~/.cache/geo-mcp/MCP tools compatible with Cursor, Claude Desktop, Codex, etc. (stdio)
Related MCP server: OpenStreetMap MCP Server
Tools
Tool | Purpose |
| Fetch/cache walk+transit graph for a place or bbox |
| Place / address → coordinates |
| Coordinates → place |
| Multimodal A* path with legs + narrative |
| Nearby OSM POIs |
| Nearby stops and lines |
| Major roads, neighborhoods, landmarks, connectivity notes |
| Nearest graph node to a coordinate |
Requirements
Python 3.14+
Install
cd /path/to/geo-mcp
uv syncRun (stdio MCP)
uv run geo-mcpCursor config
Project example: .cursor/mcp.json
Or add to ~/.cursor/mcp.json:
{
"mcpServers": {
"geo-mcp": {
"command": "uv",
"args": [
"--directory",
"/path/to/geo-mcp",
"run",
"geo-mcp"
]
}
}
}Suggested agent flow
geocodethe destination (and origin if needed)load_areafor the neighborhood / placedescribe_areafor spatial contextplan_routewith coordinatesOptionally
find_nearby/list_transit_options
Tests
uv run pytestLive OSM smoke (needs network):
uv run python scripts/smoke_route.pyConfiguration
Environment variables use the GEO_MCP_ prefix:
GEO_MCP_USER_AGENT— Nominatim/Overpass User-AgentGEO_MCP_CACHE_DIR— graph cache directoryGEO_MCP_NOMINATIM_URL/GEO_MCP_OVERPASS_URL
Attribution & policy
Map data © OpenStreetMap contributors
Respect Nominatim usage policy and Overpass etiquette (polite User-Agent, modest request rates)
Architecture
src/geo_mcp/
domain/ # entities + pure pathfinding
application/ # use cases + DTOs
infrastructure/ # OSM adapters + cache
interfaces/mcp/ # FastMCP toolsMVP limits
Transit uses OSM topology / heuristic speeds (not GTFS schedules)
Large city-wide bboxes are automatically shrunk around the geocoded center
First
load_areafor a bbox can take a while while Overpass/OSMnx respond
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceAn experimental MCP server providing spatial context for LLMs by interfacing with French Geoplateforme services. It enables tasks such as geocoding, altitude lookups, and querying administrative, cadastral, or urban planning data.104MIT
- AlicenseBqualityDmaintenanceA comprehensive MCP server providing 30 tools for geocoding, routing, and OpenStreetMap data analysis. It enables AI assistants to search for locations, calculate travel routes, and perform quality assurance checks on map data.303MIT
- Alicense-qualityBmaintenanceFree geospatial MCP server for AI agents, providing geocoding, reverse geocoding, POI search, and route planning using OpenStreetMap data via Nominatim, Overpass, and OSRM.1GPL 3.0
- Flicense-qualityAmaintenanceAn MCP server providing geocoding, routing, isochrones, and POI-by-proximity search through self-hosted OpenStreetMap backends.
Related MCP Connectors
MCP server for Mireye Earth — federal-source-cited geospatial data for any MCP-aware agent.
OpenStreetMap Overpass MCP — programmatic queries against the OSM database
Nominatim MCP — wraps OpenStreetMap Nominatim geocoding API (free, no auth)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FaresKi/geo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server