routecraft
Provides optional Google map, aerial, and Street View images via Google Maps Platform.
Provides road, path, surface, access, speed, control, and bicycle facility data from OpenStreetMap.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@routecraftHelp me build a bicycle route from downtown to the waterfront, starting with the first segment."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Routecraft
Routecraft is a CLI for agents that build bicycle routes one road or path at a time.
The CLI shows connected choices and source evidence. The agent selects each segment. Routecraft validates every change and records an immutable revision.
Routecraft leaves road ranking and route decisions to the agent. It does not generate loops.
What Routecraft provides
Road, path, surface, access, speed, control, and bicycle facility data from OpenStreetMap
Connected route choices that keep each exact segment reference
Weather, elevation, nearby places, and route comparison data
Optional Google map, aerial, and Street View images
Exact edits, hand-drawn connectors, and GPX or GeoJSON export with a Routecraft provenance file
The same command contracts through a CLI and an MCP server
Source data can be incomplete. Routecraft reports unknown values and never labels a road as safe.
Related MCP server: Geo MCP Worker
Requirements
Use Node.js 22 or newer.
Install from source
git clone https://github.com/quinnsprouse/routecraft.git
cd routecraft
npm install
npm run build
npm link
routecraft --versionStart an agent session
Create a separate workspace for each route.
export ROUTECRAFT_HOME="$(mktemp -d)"
routecraft guide next --jsonRead result.actions from guide next. After a normal command, follow result.nextActions when that field exists.
Each executable action includes the next CLI and MCP calls with their expected results.
Load the bundled network when you want a local demo.
routecraft guide topic network --jsonRun the command in result.bundledDemo.invoke.cli. Then run the returned route.create action and continue through result.nextActions.
Use a command guide before you need more options.
routecraft guide command route.append --json
routecraft guide command route.export --jsonAgent skill
Routecraft includes a skill that matches the installed CLI version.
routecraft skills get core --json
routecraft skills get core --full --jsonRegister result.path with the agent host. Use result.content when the host accepts inline instructions.
MCP
Run routecraft mcp over standard input and output.
{
"mcpServers": {
"routecraft": {
"command": "routecraft",
"args": ["mcp"],
"env": {
"ROUTECRAFT_HOME": "/absolute/path/to/a/route-workspace"
}
}
}
}Routecraft hides Google imagery commands until ROUTECRAFT_GOOGLE_MAPS_API_KEY exists. Run routecraft provider status --json to inspect the current setup.
Data sources
Data | Source | Required setup |
Roads, paths, surfaces, and access | OpenStreetMap and Overpass | None |
Place lookup | Nominatim | Explicit public-service consent or a configured endpoint |
Route weather | Open-Meteo | None for its public noncommercial endpoint |
Segment elevation | USGS 3DEP | None |
Map, aerial, and street images | Google Maps Platform |
|
Personal Strava and Ride with GPS data are not implemented.
Data license
Routecraft uses road and path data from OpenStreetMap contributors. OpenStreetMap licenses this data under the ODbL.
Develop
npm ci
npm run check
npm run package:smokeSee the architecture note for the module boundaries and project patterns.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
MCP server for building and testing AI agents with multi-model experimentation and insights.
Create, inspect, validate, and save editable 3D building scenes with Pascal's hosted MCP server.
1MCP server for Pinchwork - an agent-to-agent task marketplace with credits-based economy
Related MCP Servers
- AlicenseBqualityDmaintenanceA comprehensive MCP server providing 30 tools for geocoding, routing, and OpenStreetMap data analysis. It enables AI assistants to search for locations, calculate travel routes, and perform quality assurance checks on map data.301255MIT
- AlicenseNot gradedqualityCmaintenanceFree geospatial MCP server for AI agents, providing geocoding, reverse geocoding, POI search, and route planning using OpenStreetMap data via Nominatim, Overpass, and OSRM.1GPL 3.0
- AlicenseAqualityDmaintenanceMCP server for planning routes (hiking, biking, driving, etc.) using the OpenRouteService API. Provides tools to find coordinates, create routes with GPX/PNG/HTML output, search POIs, and compute reachable areas.62MIT
- FlicenseNot gradedqualityAmaintenanceAn MCP server providing geocoding, routing, isochrones, and POI-by-proximity search through self-hosted OpenStreetMap backends.-