V2rmp MCP Server

High-performance route optimization for road networks. Solve Chinese Postman Problem (CPP) and Vehicle Routing Problem (VRP).

Local serverstdio

What is the V2rmp MCP server?

V2rmp MCP server exists for a simple reason — assistants are far more useful when they can act on V2rmp directly instead of describing what you should do. High-performance route optimization for road networks. Solve Chinese Postman Problem (CPP) and Vehicle Routing Problem (VRP).

What you get

  • CPP Solvers — Internal Rust solver + external rust-optimizer (5-8x faster, 20-60% better efficiency)
  • VRP Solvers — Greedy, Clarke-Wright, Sweep, Two-Opt, OR-Tools, Neural
  • Data Sources — Overture Maps, OSM PBF, PMTiles, PostGIS
  • Binary Format — .rmp - compact binary road network storage (~90% compression)
  • MCP Server — 25+ tools for AI agent integration
  • ML Features — Solver selection, quality prediction, graph embeddings

What the assistant can call

Once V2rmp is connected, these are the calls the assistant has available:

  • extract — Download road data from Overture/OSM/PMTiles
  • compile — Convert GeoJSON to .rmp binary
  • optimize — Solve CPP on .rmp map
  • vrp — Solve Vehicle Routing Problem
  • serve — Start MCP JSON-RPC server
  • clean — Repair GeoJSON road networks
  • partition — Split graph into zones
  • elevation — Query DEM elevation data

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Choosing this one

Plenty of file and storage access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. V2rmp's toolset — extract, compile, optimize and 5 more — is a fair guide to whether it matches your workflow. It is maintained by spacialglaciercom-lab; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the v2rmp mcp server does with a few real requests.

Available tools

ToolWhat it does
extractDownload road data from Overture/OSM/PMTiles
compileConvert GeoJSON to .rmp binary
optimizeSolve CPP on .rmp map
vrpSolve Vehicle Routing Problem
serveStart MCP JSON-RPC server
cleanRepair GeoJSON road networks
partitionSplit graph into zones
elevationQuery DEM elevation data

How to install the V2rmp MCP server

{
  "mcpServers": {
    "rmpca": {
      "command": "rmpca",
      "args": ["serve"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use V2rmp to extract.
  • Use V2rmp to compile.
  • Use V2rmp to optimize.

Frequently asked questions

It connects V2rmp to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (extract, compile, optimize, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with V2rmp directly.