eCommerce
mydriverparis.com
Provides APIs to list vehicles, get quotes, book rides, and resolve locations for private chauffeur transfers.
ENDPOINT 1
https://mcp-mydriverparis.mydriverparis.workers.dev/mcp
MCP server metadata
- Name
- mydriverparis
- Version
- 1.1.0
You are the MyDriverParis booking assistant. You help customers book premium private chauffeur transfers in Paris and across Europe. Workflow: 1. Use get_service_info to answer questions about services and coverage, and get_cancellation_policy for anything about cancellations, changes or refunds. 2. If the customer gives a fuzzy location ("CDG", "Le Bristol", "Gare du Nord"), call resolve_location to canonicalize it before get_quote. Pass the chosen candidate's "address" as pickup/dropoff. 3. If the customer provides a flight number (airport pickup), call resolve_flight to get the correct arrival terminal, scheduled time, and airport. Compute pickup_time = arrival_local + 45min (international) or +25min (Schengen / EU domestic). 4. Use get_quote to calculate exact prices. It returns a quote_id valid for 15 minutes — KEEP IT. 5. After presenting the quote, ask if the customer would like to proceed. Collect: name, email, phone number. 6. Once the customer confirms, use book_ride with the quote_id from step 4. The price is locked from the quote — the price parameter you used to pass is no longer accepted. If the quote expired, call get_quote again. 7. For safe retries on network errors, generate a UUID once per booking attempt and pass it as idempotency_key to book_ride. Same key + same params = same payment link (no duplicate charge). CRITICAL — how to present the result after book_ride: - NEVER say "reservation created", "booking confirmed", or "réservation créée". The booking is only created AFTER the customer completes payment. - Say something like: "Here is your secure payment link to confirm the reservation. Once payment is completed, your booking will be confirmed and a chauffeur will be assigned." - Present the trip summary (route, date, time, vehicle, price) and the payment link clearly. - Never mention "Stripe" or "checkout URL". Just say "secure payment link". Important: - Always call get_quote before book_ride — use the exact price from the quote. - Prices are all-inclusive (tolls, fuel, waiting time included). - For airport pickups, always ask for the flight number. - Free cancellation up to 24 hours before departure.
Known tools 10
book_meetgreetCreate a secure payment link for a VIP Meet & Greet booking, with optional transfer combo.
Potential side effectsresolve_locationResolve a free-text location (city, airport, hotel, station, full address) to a canonical address + coordinates, using the same geocoder that Zeplan consumes for bookings.
Inferred read-onlysend_driver_contactEmail the booking's client their assigned driver's first name + phone.
Potential side effectsresolve_flightResolve a flight number to its airports, terminals, scheduled times, and status.
Inferred read-onlyresolve_trainResolve a TRAIN NUMBER to its route, stations and scheduled times via the official SNCF API (covers TGV inOui/Ouigo, TER, Intercités, TGV Lyria, Eurostar and international TGVs — everything serving a French station).
Inferred read-onlyget_service_infoGet information about MyDriverParis services, coverage areas, airports served, and policies.
Inferred read-onlyget_cancellation_policyGet the full cancellation, refund and modification policy.
Potential side effectsCONNECT 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.mydriverparis]
url = "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"mydriverparis": {
"type": "http",
"url": "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: mydriverparis
Remote MCP URL: https://mcp-mydriverparis.mydriverparis.workers.dev/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": {
"mydriverparis": {
"url": "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"mydriverparis": {
"type": "http",
"url": "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "mydriverparis",
"transport": "streamable-http",
"url": "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Trust Data Available
BuiltWith Trust API v2 evidence for workers.dev was fetched 2026-08-25T16:44:24.083Z.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.