wheels-routerPlan public transit trips globally using Wheels Router (Hong Kong) and Transitous (worldwide)
Install via ClawdBot CLI:
clawdbot install anscg/wheels-routerI help you plan public transit trips anywhere in the world by connecting to the Wheels Router MCP server.
For Hong Kong trips, I use the Wheels Router API which provides:
For worldwide trips, I use the Transitous API which covers:
Use this skill whenever you need to:
Examples:
Follow your mcporter skill, if you don't have one follow below:
Add to config/mcporter.json:
{
"mcpServers": {
"wheels-router": {
"description": "Plan public transit trips globally",
"baseUrl": "https://mcp.justusewheels.com/mcp"
}
}
}
Then call tools directly:
npx mcporter call wheels-router.search_location query="Hong Kong Airport"
npx mcporter call wheels-router.plan_trip origin="22.28,114.24" destination="22.31,113.92"
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"wheels-router": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.justusewheels.com/mcp"]
}
}
}
Cursor/Windsurf/VS Code (.cursor/mcp.json or similar):
{
"mcpServers": {
"wheels-router": {
"command": "npx",
"args": ["mcp-remote", "https://mcp.justusewheels.com/mcp"]
}
}
}
search_locationSearch for places before planning trips. Always use this first if you don't have exact coordinates.
Parameters:
query (required): Place name or address (e.g., "Hong Kong Airport", "Yau Tong MTR Exit A2")limit (optional): Number of results (1-10, default 5)Example:
search_location({
query: "Hong Kong International Airport",
limit: 3
})
Returns:
display_name: Full addresslat, lon: Coordinates for use in plan_triptype, class: Location categoryplan_tripPlan a transit route between two points.
Parameters:
origin (required): Starting point as "lat,lon" or "stop:ID"destination (required): Ending point as "lat,lon" or "stop:ID"depart_at (optional): ISO 8601 departure time (e.g., "2026-01-26T10:00:00+08:00")arrive_by (optional): ISO 8601 arrival deadlinemodes (optional): Comma-separated modes like "mtr,bus,ferry" (only specify if needed)max_results (optional): Limit number of route options (1-5)Example:
plan_trip({
origin: "22.2836,114.2358",
destination: "22.3080,113.9185",
depart_at: "2026-01-26T14:30:00+08:00",
max_results: 3
})
Returns:
plans: Array of route optionsduration_seconds: Total trip timefares_min, fares_max: Fare range in HKD (Hong Kong only)legs: Step-by-step directionstype: "walk", "transit", "wait", "station_transfer"search_location to find coordinates before calling plan_triplat,lon format for best resultsdepart_at or arrive_by for accurate schedulesmax_resultsfares_min and fares_max show the range—interchange discounts are noted separately when available// 1. Search for locations
const origins = await search_location({
query: "Yau Tong MTR Station",
limit: 1
});
const destinations = await search_location({
query: "Hong Kong Airport",
limit: 1
});
// 2. Plan the trip
const routes = await plan_trip({
origin: `${origins[0].lat},${origins[0].lon}`,
destination: `${destinations[0].lat},${destinations[0].lon}`,
depart_at: "2026-01-26T15:00:00+08:00",
max_results: 2
});
// 3. Present the best options to the user or present specific results but only if user asked specifically. By default just give them something like "[walk] > [3D] > [walk] > [Kwun Tong Line] > [walk]"- unless they ask for specifics.
Generated Mar 1, 2026
Residents and visitors in Hong Kong can plan daily commutes using detailed public transit routes, including MTR, buses, trams, and ferries, with real-time schedules and fare estimates. This helps optimize travel time and costs, especially for routes with interchange discounts.
Tourists in major global cities can use this skill to navigate public transportation systems, finding routes between landmarks, airports, and accommodations. It provides walking directions and transfer information to enhance travel convenience and reduce reliance on taxis.
Business travelers can schedule trips between meetings or from hotels to offices in cities like Hong Kong or Tokyo, using accurate departure times and platform details. This ensures punctuality and efficient use of time during work trips.
Event organizers can help attendees reach venues by providing transit routes and schedules, particularly useful for large gatherings in urban areas. This supports sustainability by encouraging public transport use and reducing congestion.
Real estate agents can assess property accessibility by planning transit routes from potential homes to key areas like business districts or schools. This aids in marketing properties based on commute times and transit options.
Offer basic transit planning for free with rate limits, while charging for premium features like advanced analytics, higher API call volumes, or enterprise support. This attracts developers and businesses needing reliable routing data.
License the routing technology to travel apps, mapping services, or corporate platforms, allowing them to integrate transit planning under their own brand. This generates revenue through licensing fees and customization services.
Aggregate anonymized transit usage data to provide insights to urban planners, transportation authorities, or advertisers. This helps optimize public transit systems and target location-based marketing campaigns.
💬 Integration Tip
Always use search_location first to get accurate coordinates before planning trips, and specify departure times for real-time schedule accuracy.
Navigate Toronto as visitor, resident, tech worker, student, or entrepreneur with neighborhoods, transit, costs, immigration, and local insights.
Navigate New York City as visitor, resident, tech worker, student, or entrepreneur with neighborhoods, transport, costs, safety, and local insights.
Query Belgian railway (NMBS/SNCB) schedules via the irail CLI. Use when the user wants train departures, connections between stations, train compositions, or...
Navigate San Francisco as visitor, resident, tech worker, student, or entrepreneur with neighborhoods, transport, costs, safety, and local insights.
Navigate Dubai as visitor, resident, tech worker, student, or entrepreneur with neighborhoods, transport, costs, visas, and local insights.
Navigate Tokyo as visitor, resident, tech worker, student, or entrepreneur with neighborhoods, transport, costs, safety, culture, and local insights.