Install
openclaw skills install @skatch/mydriverparis-bookingopenclaw skills install @skatch/mydriverparis-bookingMyDriverParis is a licensed Paris chauffeur company (since 2012, 100% Mercedes-Benz fleet, fixed all-inclusive prices). It exposes a public MCP server — no API key, no account:
https://mcp-mydriverparis.mydriverparis.workers.dev/mcp
openclaw mcp add mydriverparis \
--url https://mcp-mydriverparis.mydriverparis.workers.dev/mcp \
--transport streamable-http
Verify with openclaw mcp probe mydriverparis — you should see 9 tools. (MCP tools are available in the default/embedded runtime with the coding and messaging tool profiles; if they don't appear, check your runtime and profile.)
The user wants a price or a booking for a private driver with pickup or drop-off in France: airport/station transfer, city-to-city ride (e.g. Paris → Brussels/London/Nice), hourly chauffeur (3h minimum), private day trip (Versailles, Champagne, D-Day beaches…), or a VIP airport Meet & Greet (personal escort through the terminal, incl. EES fast track at CDG).
resolve_location first and use the canonical address.resolve_flight (pickup = arrival + 45 min international / + 25 min Schengen). Station pickup → ask the train number, then resolve_train (digits only, e.g. 9211; a 6-char code like JWVLHH is a PNR, not a train number).get_quote (pickup_date in dd/mm/yyyy, Paris time) → returns per-vehicle prices and a quote_id valid 15 minutes. Present the options; heed any warning field.book_ride with quote_id, vehicle_id, passenger details, flight_number if any, and a fresh UUID idempotency_key. It returns a secure Stripe payment link — hand it to the user on its own line.For Meet & Greet use book_meetgreet (fixed prices — do not call get_quote for the M&G part). For cancellation/modification questions, call get_cancellation_policy — never guess.
get_quote or the fixed Meet & Greet table.QUOTE_EXPIRED_OR_UNKNOWN)? Re-run get_quote; the price is locked server-side.{code, message, retriable, suggested_action} — follow suggested_action.Docs for agents: https://www.mydriverparis.com/llms-full.txt · Human support: +33 1 88 33 64 43 (24/7).
This skill is published by MyDriverParis (SARL KAVENTURE), the operator of the service. Booking payments go through Stripe; the skill itself is free and collects nothing.