← lad.lviv.ua

INDIVIDUAL MCP TOOL

get_route_realtime

Returns live positions for all vehicles currently running on a route, optimised for map rendering.

lad.lviv.uanone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

lad.lviv.ua

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.com-lad-lviv-timetable-api]
url = "https://api.lad.lviv.ua/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "com-lad-lviv-timetable-api": {
      "type": "http",
      "url": "https://api.lad.lviv.ua/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: com-lad-lviv-timetable-api
Remote MCP URL: https://api.lad.lviv.ua/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "com-lad-lviv-timetable-api": {
      "url": "https://api.lad.lviv.ua/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "com-lad-lviv-timetable-api": {
      "type": "http",
      "url": "https://api.lad.lviv.ua/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "com-lad-lviv-timetable-api",
  "transport": "streamable-http",
  "url": "https://api.lad.lviv.ua/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_stop_realtime — Returns live arrivals and vehicle positions for a stop, producing both a map UI block and a structured arrival list.
  • get_route_static — Returns static route metadata: short and long name, vehicle type, brand colour, ordered stop lists for both directions, and route polylines (shapes) for map rendering.
  • get_stop_geometry — Returns static map context for a stop: its marker and polylines for every route that serves it.
  • get_stops_around_location — Discovers transit stops near a geographic point, returning each stop's numeric code, name, coordinates, and walking distance.
  • get_nearby_vehicles — Returns live positions for all transit vehicles within 1 km of given coordinates.
  • get_vehicle_info — Returns full details for a specific transit vehicle by its ID: current position, bearing, route, license plate, direction, and upcoming stop arrivals.
  • plan_trip — Plans a transit trip from an origin stop to a destination stop using the static route graph.