pois_near
Pack: overpass · Endpoint: https://gateway.pipeworx.io/overpass/mcp
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.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
latitude | number | yes | Center latitude |
longitude | number | yes | Center longitude |
radius_m | number | no | Search radius in metres (1-10000, default 1000) |
tag | string | yes | OSM tag filter (e.g., “amenity=cafe”, “shop”, “tourism=museum”) |
limit | number | no | Max results (1-500, default 100) |
Example call
curl -X POST https://gateway.pipeworx.io/overpass/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"pois_near","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"overpass": {
"url": "https://gateway.pipeworx.io/overpass/mcp"
}
}
}
See Getting Started for client-specific install steps.