Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计未展示

wheels-router轮式路由器

Agent Skill

wheels-router 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

212

周安装

9

GitHub Stars

公开资料未说明

下载量

74
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:wheels-router(轮式路由器)
来源仓库:https://github.com/wheelstransit/wheels-router-mcp
仓库路径:skills/wheels-router
安装命令:
npx skills add wheelstransit/wheels-router-mcp --skill "wheels-router"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add wheelstransit/wheels-router-mcp --skill "wheels-router"

简介

wheels-router 实现轮式交通路线规划与信息路由功能。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等平台中的物流或出行辅助场景。
  • 通过 npx skills add wheelstransit/wheels-router-mcp --skill "wheels-router" 安装。
  • 依赖外部地图服务或路由引擎,需确保网络连通性与服务可用性。
  • 建议测试不同城市与时段的路由准确性后再集成到自动化流程。

SKILL.md

What I do

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:

  • Detailed routing with MTR, bus, tram, ferry, and walking
  • Real-time schedules and accurate fares
  • Platform information and exit details
  • Interchange discounts (轉乘優惠) when available

For worldwide trips, I use the Transitous API which covers:

  • Major cities globally with transit data
  • Basic routing with public transportation
  • Walking directions and transfers

When to use me

Use this skill whenever you need to:

  • Plan a trip using public transportation
  • Find the best route between two locations
  • Check transit schedules and connections
  • Get fare estimates for Hong Kong transit
  • Search for locations before planning routes

Examples:

  • "How do I get from Yau Tong MTR to Hong Kong Airport?"
  • "What's the best way to Central from Causeway Bay right now?"
  • "Plan a trip from Tokyo Station to Shibuya"
  • "Search for locations near Victoria Park"

How to connect

If you're using mcporter (clawdbot, etc.)

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"

For other MCP clients

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"]
    }
  }
}

Available tools

search_location

Search 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 address
  • lat, lon: Coordinates for use in plan_trip
  • type, class: Location category

plan_trip

Plan 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 deadline
  • modes (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

Best practices

  1. Always search first: Use search_location to find coordinates before calling plan_trip
  2. Use coordinates: Plan trips with lat,lon format for best results
  3. Specify times: Include depart_at or arrive_by for accurate schedules
  4. Check multiple options: Request 2-3 route options with max_results
  5. Understand fares: fares_min and fares_max show the range—interchange discounts are noted separately when available

Important notes

  • Interchange discounts (轉乘優惠): Only shown when explicitly present in Hong Kong routes, not all routes qualify
  • Real-time data: Hong Kong routes use live schedules; worldwide coverage may vary
  • Time zones: Use UTC or local timezone offsets (HKT is UTC+8)
  • Coverage: Best for Hong Kong; worldwide coverage varies by city

Example workflow

// 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.

Error handling

  • "Could not find location": Try a more specific search query
  • "No routes found": Check if coordinates are valid and in a covered area
  • "Invalid time format": Ensure ISO 8601 format with timezone
  • Rate limits: Be mindful of API usage, cache results when appropriate

Coverage areas

  • Full coverage: Hong Kong (MTR, bus, tram, ferry, detailed fares)
  • Good coverage: Major global cities with Transitous data
  • ⚠️ Limited coverage: Smaller cities may have incomplete transit data

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

52%
按下载量换算38

Antigravity

27.39%
按下载量换算20

Gemini CLI

14.19%
按下载量换算11

安全审计

暂无安全审计结果可展示。

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills