What is the Openrouteservice MCP server?
Routing, isochrones, matrix, snap, elevation, geocode via Openrouteservice.
How to install Openrouteservice
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"openrouteservice": {
"url": "https://gateway.pipeworx.io/openrouteservice/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"openrouteservice": {
"serverUrl": "https://gateway.pipeworx.io/openrouteservice/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"openrouteservice": {
"type": "http",
"url": "https://gateway.pipeworx.io/openrouteservice/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"openrouteservice": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/openrouteservice/mcp"
]
}
}
}Claude Code
claude mcp add --transport http openrouteservice https://gateway.pipeworx.io/openrouteservice/mcp