MCP server exposing 3 tools for overpass.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/overpass/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
query — Run a raw Overpass QL query against OpenStreetMap. Use for complex spatial queries the helper tools can't express. Example: `[out:json][timeout:25]; area["name"="Berlin"][admin_level=4]->.a; node["amenity"="library"](area.a); out body;`. Returns the raw Overpass JSON (elements array with node/way/relation).pois_near — Find OSM points of interest within a radius of a lat/lon. Pass an OSM key=value tag like "amenity=cafe", "shop=bakery", "tourism=museum", or just "amenity" to match any value. Returns nodes with names, tags, and coordinates.places_in_bbox — Find OSM POIs inside a bounding box. Use for "every park in this area" or "all restaurants in this neighborhood". Bounding box is (south, west, north, east) in degrees.Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/overpass/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io