Route optimization API for Brazil. Calculate driving routes, distance matrices, and optimize multi-stop deliveries with real road network data. Free tier: 50 calls/month.
Overview
RouteKit provides 3 MCP tools:
- calculate_route - Driving route between points with real distances and ETAs
- distance_matrix - NxN distance/duration matrix (up to 200 locations)
- optimize_routes - VRP solver: assign tasks to vehicles, optimize sequences, respect time windows, skills, capacity, breaks (up to 500 tasks)
Get a free API key at https://routekit.nexterait.com.br/static/signup.html
Server Config
{
"mcpServers": {
"routekit": {
"command": "npx",
"args": [
"-y",
"routekit-mcp"
],
"env": {
"ROUTEKIT_API_KEY": "<YOUR_API_KEY>"
}
}
}
}