Plan public transit trips globally using Wheels Router (Hong Kong) and Transitous (worldwide)
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install wheels-router或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install wheels-router⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/wheels-router/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: wheels-router description: Plan public transit trips globally using Wheels Router (Hong Kong) and Transitous (worldwide) license: MIT compatibility: opencode metadata: transport: mcp coverage: global specialty: hong-kong ---
I 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 options - duration_seconds: Total trip time - fares_min, fares_max: Fare range in HKD (Hong Kong only) - legs: Step-by-step directions - type: "walk", "transit", "wait", "station_transfer" - Transit legs include: route name, headsign, stops, platform info - Walk legs include: distance, duration
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.
安装 Wheels Router 后,可以对 AI 说这些话来触发它
Help me get started with Wheels Router
Explains what Wheels Router does, walks through the setup, and runs a quick demo based on your current project
Use Wheels Router to plan public transit trips globally using Wheels Router (Hong Kong) ...
Invokes Wheels Router with the right parameters and returns the result directly in the conversation
What can I do with Wheels Router in my general tools workflow?
Lists the top use cases for Wheels Router, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/wheels-router/ 目录(个人级,所有项目可用),或 .claude/skills/wheels-router/(项目级)。重启 AI 客户端后,用 /wheels-router 主动调用,或让 AI 根据上下文自动发现并使用。
Wheels Router 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Wheels Router 可免费安装使用。请查阅仓库了解许可证信息。
Plan public transit trips globally using Wheels Router (Hong Kong) and Transitous (worldwide)
Wheels Router 属于「General Tools」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my general tools tasks using Wheels Router
Identifies repetitive steps in your workflow and sets up Wheels Router to handle them automatically