Install
openclaw skills install @agentpmt/multi-location-route-optimizer-w-mapMulti-Location Route Optimizer W Map: Optimize routes for 2-25 waypoints. Use when an agent needs multi location route optimizer w map, delivery services can optimize daily delivery routes to save fuel and time while handling up to 25 deliveries per route with automatic distance and time calculations. sales teams can plan efficient customer visit schedules and prioritize high value clients while minimizing travel between appointments. Discovery terms: multi location route optimizer w map.
openclaw skills install @agentpmt/multi-location-route-optimizer-w-mapLast updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
Find the most efficient route for visiting multiple locations with this comprehensive route optimization tool. Perfect for delivery services, sales teams, service technicians, and any business that needs to minimize travel time or distance when visiting multiple locations. The tool automatically reorders 2-25 waypoints to find the most efficient path, accepting both street addresses and latitude/longitude coordinates for maximum flexibility. It generates static maps showing the optimized route and creates shareable Google Maps URLs for easy navigation. The optimizer supports round trips for delivery scenarios, accounts for service time at each location, and offers multiple travel modes including driving, walking, bicycling, and transit. You can avoid tolls, highways, or ferries based on your preferences, and choose to optimize for either time or distance. The tool provides four main actions: optimize_route to find the most efficient order to visit all locations, get_route_details for turn-by-turn directions, create_route_map to generate visual maps, and get_instructions for usage documentation. Typical users see 10-30% reduction in travel distance and time, making this an essential tool for improving operational efficiency.
Optimizes multi-stop routes to find the most efficient visit order, provides turn-by-turn directions, and generates visual route maps. Supports 2-25 locations with driving, walking, bicycling, and transit modes.
Finds the most efficient order to visit a set of locations, minimizing total travel time or distance.
Required fields:
locations (array): 2-25 location objects. Each must have either address (string) OR latitude/longitude (numbers).Optional location fields:
name (string): Label for the location (e.g., "Warehouse", "Customer A")service_time_minutes (integer): Time spent at this stop in minutesOptional fields:
start_location (object): Fixed starting point if different from first location. Object with address or latitude/longitude, and optional name.end_location (object): Fixed ending point if different from last location. Object with address or latitude/longitude, and optional name. Ignored when return_to_start is true.return_to_start (boolean): Set to true for a round trip back to starting location. Default: falsetravel_mode (string): "driving" (default), "walking", "bicycling", or "transit"optimize_for (string): "time" (default) or "distance"avoid (array): Features to avoid: "tolls", "highways", "ferries"departure_time (string): ISO format datetime (e.g., "2026-01-15T09:00:00") or "now". Traffic-aware routing (driving mode only).include_map (boolean): Generate a visual route map image. Default: falseinclude_directions (boolean): Include turn-by-turn directions. Default: falsemap_width (integer): Map image width in pixels, 1-640. Default: 640map_height (integer): Map image height in pixels, 1-640. Default: 640Response includes:
optimized_route.locations - Locations in optimized order with travel_to_next_km and travel_to_next_minutes per stopoptimized_route.legs - Per-leg breakdown with from, to, distance_km, duration_minutesoptimized_route.total_distance_km - Total route distanceoptimized_route.total_duration_minutes - Total travel time plus service timeoptimized_route.estimated_fuel_cost_usd - Rough fuel cost estimategoogle_maps_url - Clickable Google Maps navigation linkoptimization_stats - Distance/time saved compared to original ordermap_image.signed_url - Route map image URL (when include_map: true). Always present this URL to the user.directions - Turn-by-turn directions (when include_directions: true)Example - Basic optimization:
{
"action": "optimize_route",
"locations": [
{ "address": "San Francisco, CA" },
{ "address": "San Jose, CA" },
{ "address": "Oakland, CA" }
]
}
Example - Full-featured delivery route:
{
"action": "optimize_route",
"locations": [
{ "address": "123 Main St, San Francisco, CA", "name": "Warehouse", "service_time_minutes": 15 },
{ "address": "456 Oak Ave, San Jose, CA", "name": "Customer A", "service_time_minutes": 30 },
{ "address": "789 Pine St, Oakland, CA", "name": "Customer B", "service_time_minutes": 20 }
],
"start_location": { "address": "100 HQ Blvd, San Francisco, CA", "name": "HQ" },
"return_to_start": true,
"travel_mode": "driving",
"optimize_for": "time",
"avoid": ["tolls"],
"include_map": true,
"include_directions": true
}
Example - Using coordinates:
{
"action": "optimize_route",
"locations": [
{ "latitude": 37.7749, "longitude": -122.4194, "name": "San Francisco" },
{ "latitude": 37.3382, "longitude": -121.8863, "name": "San Jose" },
{ "latitude": 37.8044, "longitude": -122.2712, "name": "Oakland" }
]
}
Gets turn-by-turn directions for locations in the order provided (does not reorder them).
Required fields:
locations (array): 2-25 location objects in the desired visit orderOptional fields:
travel_mode (string): "driving" (default), "walking", "bicycling", or "transit"avoid (array): Features to avoid: "tolls", "highways", "ferries"Response includes:
directions.legs[] - Per-leg directions with steps, distance, and durationdirections.total_distance - Total distance in kmdirections.total_duration - Total duration in minutesgoogle_maps_url - Clickable Google Maps linkExample:
{
"action": "get_route_details",
"locations": [
{ "address": "Times Square, New York, NY", "name": "Start" },
{ "address": "Central Park, New York, NY", "name": "Stop 1" },
{ "address": "Brooklyn Bridge, New York, NY", "name": "End" }
],
"travel_mode": "walking"
}
Generates a static map image showing the route with labeled markers at each location.
Required fields:
locations (array): 2-25 location objects in the desired orderOptional fields:
travel_mode (string): "driving" (default), "walking", "bicycling", or "transit"map_width (integer): Image width in pixels, 1-640. Default: 640map_height (integer): Image height in pixels, 1-640. Default: 640Response includes:
map_image.signed_url - URL to the generated map image. Always present this URL to the user.map_image.file_id - Storage file IDgoogle_maps_url - Clickable Google Maps linkExample:
{
"action": "create_route_map",
"locations": [
{ "address": "Los Angeles, CA", "name": "LA" },
{ "address": "Las Vegas, NV", "name": "Vegas" },
{ "address": "Phoenix, AZ", "name": "Phoenix" }
],
"map_width": 640,
"map_height": 400
}
address OR both latitude and longitude.locations array must contain between 2 and 25 locations.return_to_start is true, the route ends back at the starting point; end_location is ignored.signed_url to the user when a map is generated.google_maps_url in every response opens the route in Google Maps for interactive navigation.departure_time to "now" or an ISO datetime to factor in traffic conditions (driving mode only).Multi-Location Route Optimizer W Map on AgentPMT.create_route_map, get_route_details, optimize_route.file-management, page: https://clawhub.ai/agentpmt/file-management; skills.sh: npx skills add AgentPMT/agent-skills --skill file-management)No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 3.
x402 availability: not enabled for this product.
create_route_map (action slug: create-route-map): Generate a static map image showing the route with labeled markers at each location. Price: 25 credits. Parameters: locations, map_height, map_width, travel_mode.get_route_details (action slug: get-route-details): Get turn-by-turn directions for locations in the provided order (does not reorder them). Price: 25 credits. Parameters: avoid, locations, travel_mode.optimize_route (action slug: optimize-route): Find the most efficient order to visit 2-25 locations, minimizing total travel time or distance. Returns optimized route with distance/duration totals, a Google Maps navigation URL, and optimization stats. Price: 25 credits. Parameters: avoid, departure_time, end_location, include_directions, include_map, locations, map_height, map_width, plus 4 more.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "multi-location-route-optimizer-w-map".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "multi-location-route-optimizer-w-map", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "multi-location-route-optimizer-w-map"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "multi-location-route-optimizer-w-map"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "multi-location-route-optimizer-w-map"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "multi-location-route-optimizer-w-map"
}
}
Product slug: multi-location-route-optimizer-w-map
Marketplace page: https://www.agentpmt.com/marketplace/multi-location-route-optimizer-w-map
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Multi-Location-Route-Optimizer-W-Map",
"arguments": {
"action": "create_route_map",
"locations": [
{
"address": "example address",
"latitude": -90,
"longitude": -180,
"name": "example name",
"service_time_minutes": 0
}
],
"map_height": 640,
"map_width": 640,
"travel_mode": "driving"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "multi-location-route-optimizer-w-map",
"parameters": {
"action": "create_route_map",
"locations": [
{
"address": "example address",
"latitude": -90,
"longitude": -180,
"name": "example name",
"service_time_minutes": 0
}
],
"map_height": 640,
"map_width": 640,
"travel_mode": "driving"
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.create_route_map fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)