myosm-mcp-server

myosm-mcp-server

An OpenStreetMap MCP server providing geocoding, routing, points of interest, map tiles, public transport, and energy infrastructure tools to enhance LLM location-based capabilities.

Category
Visit Server

README

myosm-mcp-server — OpenStreetMap MCP Server (Node.js)

An OpenStreetMap MCP server that enhances LLM capabilities with location-based services and geospatial data.

This is a Node.js/TypeScript reimplementation of jagan-shanmugam/open-streetmap-mcp (Python), extended with map-layer, public-transport and energy-infrastructure tools.

Features

The server gives LLMs tools to interact with OpenStreetMap data:

  • Geocode addresses and place names to coordinates (and the reverse)
  • Find nearby points of interest
  • Get route directions and commute analysis between locations (OSRM)
  • Search for places by category within a bounding box
  • Suggest optimal meeting points for multiple people
  • Explore areas and run neighborhood livability analysis
  • Find schools, EV charging stations and parking facilities
  • Map layers: fetch rendered map tiles (standard, transport, cycle, …) as images
  • Public transport layer: stops, stations and transit route lines (bus, tram, train, subway, light rail, ferry)
  • Energy layer: power lines, underground cables, substations and transformers (with voltage filtering), plus electricity production facilities (power plants and generators, filterable by source and output)

Installation

Requires Node.js ≥ 18.17.

git clone https://github.com/visuelconcept/myosm-mcp-server.git
cd myosm-mcp-server
npm install
npm run build

Running the server

The server supports both MCP transports; stdio is the default.

stdio (local MCP hosts: Claude Desktop, Claude Code, Cursor, Windsurf, …)

{
  "mcpServers": {
    "myosm-mcp-server": {
      "command": "node",
      "args": ["/path/to/myosm-mcp-server/dist/index.js"]
    }
  }
}

With Claude Code:

claude mcp add myosm -- node /path/to/myosm-mcp-server/dist/index.js

Claude Desktop config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json

Streamable HTTP (remote deployments, shared server, multiple clients)

Start the server in HTTP mode:

node dist/index.js --http --port 3000        # or: npm run start:http
# equivalent: MCP_TRANSPORT=http PORT=3000 node dist/index.js

The MCP endpoint is http://127.0.0.1:3000/mcp (sessions are managed per client via the Mcp-Session-Id header) and GET /health reports liveness for deployment probes.

Declare it in an MCP host by URL:

{
  "mcpServers": {
    "myosm-mcp-server": {
      "type": "http",
      "url": "http://127.0.0.1:3000/mcp"
    }
  }
}

With Claude Code:

claude mcp add --transport http myosm http://127.0.0.1:3000/mcp

CLI options: --http, --stdio, --host <address>, --port <number>, --help.

Security: the HTTP server binds to 127.0.0.1 by default and has no built-in authentication. To expose it (--host 0.0.0.0), put it behind a reverse proxy that handles TLS and auth, and set MCP_ALLOWED_HOSTS (comma-separated Host header values, e.g. MCP_ALLOWED_HOSTS=mcp.example.com) to enable DNS-rebinding protection.

Tools

Geocoding

Tool Description
geocode_address Convert an address or place name to coordinates with rich metadata
reverse_geocode Convert coordinates to a detailed address

Places & analysis

Tool Description
find_nearby_places Discover POIs near a location, grouped by category/subcategory
search_category Find places of given categories/subcategories in a bounding box
suggest_meeting_point Compute a central meeting point and suggest venues around it
explore_area Comprehensive profile of all features in an area
analyze_neighborhood Livability analysis with category scores and walkability
find_schools_nearby Educational institutions around a point, sorted by distance
find_ev_charging_stations EV charging stations with connector/power filtering
find_parking_facilities Parking facilities with type, capacity and fee info

Routing

Tool Description
get_route_directions Route between two points (car/bike/foot) with turn-by-turn directions
analyze_commute Compare home→work commute across several transport modes

Map layers & transport

Tool Description
get_map_tile Rendered map tile (PNG image) covering a location — styles: standard, transport, cycle, landscape, outdoor
find_public_transport Public transport layer: stops/stations/terminals plus transit route lines (bus, trolleybus, tram, train, subway, light_rail, ferry), filterable by mode

Energy

Tool Description
find_power_infrastructure Electricity grid: power lines, underground cables, substations, transformers (and on request towers, poles, switches, …) with voltage parsing, min_voltage filter and optional line geometry
find_power_plants Production facilities: power=plant and power=generator with energy source (solar, wind, hydro, nuclear, gas, …), method and output in MW; filterable by sources and min_output_mw

Resources

  • location://place/{query} — information about a place by name (JSON)
  • location://map/{style}/{z}/{x}/{y} — styled map tile at tile coordinates (PNG)

Configuration

All configuration is optional and done through environment variables:

Variable Default Purpose
MCP_TRANSPORT stdio stdio or http
MCP_HTTP_HOST 127.0.0.1 HTTP bind address
MCP_HTTP_PORT / PORT 3000 HTTP port
MCP_ALLOWED_HOSTS Comma-separated Host values; enables DNS-rebinding protection
NOMINATIM_URL https://nominatim.openstreetmap.org Geocoding endpoint (self-hosted Nominatim)
OVERPASS_URL https://overpass-api.de/api/interpreter Overpass API endpoint
OSRM_URL https://router.project-osrm.org Routing endpoint (self-hosted OSRM)
OSM_TILE_URL https://tile.openstreetmap.org/{z}/{x}/{y}.png Tile server for the standard style
THUNDERFOREST_API_KEY Required for the transport, cycle, landscape and outdoor map styles (free tier)
OSM_USER_AGENT myosm-mcp-server/1.0 (…) User-Agent sent to the OSM services

Behind a corporate proxy, run Node with NODE_USE_ENV_PROXY=1 (Node ≥ 22.15) so fetch honors HTTPS_PROXY.

Fair use: by default the server talks to free, community-run services. Respect the Nominatim usage policy (max 1 req/s), the Overpass fair-use policy and the OSRM demo server policy. For production workloads, point the environment variables at your own instances. Note: the public OSRM demo server routes every profile with car data; self-host OSRM to get real bike/foot routing (the server already maps modes to the canonical driving/cycling/walking profiles).

Development

npm run build       # compile TypeScript to dist/
npm run watch       # recompile on change
npm test            # smoke + integration + HTTP transport tests (all offline)
SMOKE_LIVE=1 npm run smoke   # additionally exercise the real public OSM APIs
npm run inspector   # debug with the MCP Inspector

The integration and HTTP tests (test/integration.mjs, test/http.mjs) run the server against local mock implementations of Nominatim, OSRM, Overpass and the tile server, so they work without network access.

Differences from the Python original

Same 12 tools and 2 resources, plus:

  • 4 new tools: get_map_tile, find_public_transport, find_power_infrastructure, find_power_plants
  • Streamable HTTP transport (--http) in addition to stdio, with per-client sessions and a /health endpoint
  • Overpass queries use out center, so ways/relations (building-mapped schools, parking lots, …) return usable coordinates instead of being dropped
  • search_category subcategory filtering uses a valid Overpass regex filter (the original generated invalid QL)
  • Transport modes are mapped to canonical OSRM profiles (driving/cycling/walking)
  • Endpoints are configurable via environment variables
  • Turn-by-turn instructions are synthesized from OSRM maneuvers ("turn left onto …")

License

MIT — see LICENSE. Original Python implementation © open-streetmap-mcp contributors.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured