
Wraps the Openrouteservice API for geospatial routing and analysis. You get seven tools: directions for A to B routing, matrix for bulk distance calculations, isochrones for time based reachability maps, snap to align coordinates to roads, elevation queries for points and polylines, and Pelias geocoding for address lookup. Requires a free Openrouteservice API key. Runs as a remote server through Pipeworx's gateway, which also offers an ask_pipeworx tool that interprets natural language questions and calls the right endpoints automatically. Useful when you need production grade routing or elevation data in your Claude workflows without standing up your own GIS stack.
Openrouteservice (ORS) MCP — directions, matrix, isochrones, snap-to-roads, elevation, POI. Free tier 2000 req/day. Key required.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
PLATFORM_ORS_KEY. BYO: ?_apiKey=….directions(coordinates, profile?, format?, instructions?) — routingmatrix(locations, profile?, sources?, destinations?, metrics?) — distance/duration matrixisochrones(locations, profile?, range, range_type?) — drive/walk isochronessnap(locations, profile?, radius?) — snap to nearest roadelevation_line(format_in, geometry) — elevation along a lineelevation_point(format_in, geometry) — elevation at a pointgeocode_search(text, sources?, layers?, size?, focus_lat?, focus_lon?) — Pelias geocoderprofile: driving-car (default) | driving-hgv | cycling-regular | cycling-road | cycling-mountain | foot-walking | foot-hiking | wheelchair.
https://api.openrouteservice.org/v2/
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"openrouteservice": {
"url": "https://gateway.pipeworx.io/openrouteservice/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/openrouteservice/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Openrouteservice data" })
The gateway picks the right tool and fills the arguments automatically.
MIT