← Back to registry /

Mobility Quote Agent

A2A conformant A2A v0.3.0

Mobility Quote Agent

v0.3.0 KLO

Worldwide A2A mobility quote and route-launcher agent. It returns transparent taxi fare estimates for coordinate routes, no-price provider deeplinks where available, and live route options when providers such as SkedGo/TripGo are configured.

Launch agent website ↗

Skills

  • Get mobility quote

    Given an origin and destination, returns estimated fare/ETA options and available route launchers. Coordinate input format: 'lat,lng'.

    mobilitytrip-planningquotedeeplinka2a

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("80386a0c-03c9-4bde-b93a-f9e6082937cd")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())