Geocoding, walking/driving/cycling distances, route optimization, isochrones and POI search on OSM
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y osm-mcp
MCP client config
{
"mcpServers": {
"openstreetmap": {
"command": "npx",
"args": [
"-y",
"osm-mcp"
]
}
}
}Run
docker run -i --rm ghcr.io/ni-c/osm-mcp:0.3.0
MCP client config
{
"mcpServers": {
"openstreetmap": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/ni-c/osm-mcp:0.3.0"
]
}
}
}