# com.mydriverparis/booking (remote · mcp-mydriverparis.mydriverparis.workers.dev)

Book a private driver in Paris: live quotes, airport transfers, tours, VIP Meet & Greet. No auth.

- Trust score: 59/100 (low)
- Change this week: +3
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `mcp-mydriverparis.mydriverparis.workers.dev`: 59/100 (this document), [markdown](https://verifymcp.io/servers/com-mydriverparis-booking/mcp-mydriverparis.md), [page](https://verifymcp.io/servers/com-mydriverparis-booking/mcp-mydriverparis)

## Channel facts

- Endpoint: `https://mcp-mydriverparis.mydriverparis.workers.dev/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.4.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 46/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 7 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 57/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 2830 tokens (~283/item across 10 items; 10 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http com-mydriverparis-booking https://mcp-mydriverparis.mydriverparis.workers.dev/mcp
```

### Codex

```toml
[mcp_servers.com-mydriverparis-booking]
url = "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-mydriverparis-booking": {
      "type": "remote",
      "url": "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-mydriverparis-booking --url https://mcp-mydriverparis.mydriverparis.workers.dev/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-mydriverparis-booking:
    url: "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-mydriverparis-booking": {
      "type": "http",
      "url": "https://mcp-mydriverparis.mydriverparis.workers.dev/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 59, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-01 (score 58, +1)

No change was recorded against any check on this day. Stability & Change Management went from 17 to 20. That category is still filling its 30-day observation window: 5 days of observed history at the previous scan, 6 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 57, −1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 58, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 58, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-28 (score 57, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 56, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 56)

First indexed and scored.

## MCP tools (10)

### `get_vehicles` (~33 tokens)

List all available vehicles with capacity and base rates. Use this to help the customer choose the right vehicle for their trip.

### `get_quote` (~244 tokens)

Calculate the exact price for a private chauffeur transfer. Returns prices for all available vehicles AND a quote_id valid for 15 minutes. Always call this before book_ride and pass the quote_id to book_ride — it locks the price and prevents drift. IMPORTANT: pickup_date must be in dd/mm/yyyy format.

Input parameters:

- `channel` (string): Caller channel identifier for observability: 'chatbot', 'whatsapp', 'claude-desktop', 'email-agent', or your agent name. Defaults to 'mcp-direct'.
- `dropoff_address` (string, required): Full drop-off address
- `form_type` (string): Booking type
- `num_hours` (number): Number of hours (required for hourly, min 3)
- `pickup_address` (string, required): Full pickup address (e.g. 'CDG Terminal 2E' or street address)
- `pickup_date` (string, required): Pickup date in dd/mm/yyyy format (e.g. '27/03/2026')
- `pickup_time` (string, required): Pickup time in HH:MM format (e.g. '14:00')
- `step_address` (string): Intermediate stop address (optional)

### `book_ride` (~310 tokens)

Create a secure payment link to book a private chauffeur transfer. The reservation is created automatically ONLY after the customer completes payment. REQUIRED: call get_quote first and pass the resulting quote_id + the chosen vehicle_id. The price is taken from the stored quote (not from any price field you pass). Pass idempotency_key to make retries safe: the same key returns the same payment link instead of creating a duplicate.

Input parameters:

- `bags` (integer): Number of bags
- `channel` (string): Caller channel identifier for observability. If omitted, the channel stored with the quote (from get_quote) is used.
- `flight_number` (string): Flight number for airport pickups (e.g. AF123)
- `idempotency_key` (string): Optional agent-generated key (e.g. UUID) to deduplicate retries. Same key + same params returns the same payment link for 24 h. Same key + different params returns an IDEMPOTENCY_CONFLICT error.
- `passenger_email` (string, required): Passenger email for booking confirmation
- `passenger_name` (string, required): Full name of the passenger
- `passenger_phone` (string, required): Passenger phone with country code (e.g. +33612345678)
- `passengers` (integer): Number of passengers
- `quote_id` (string, required): quote_id returned by get_quote. Must be passed. Expired quote (>15 min) requires a fresh get_quote.
- `vehicle_id` (number, required): Vehicle ID chosen from the get_quote results

### `book_meetgreet` (~928 tokens)

Create a secure payment link for a VIP Meet & Greet booking, with optional transfer combo. Available locations: CDG, Orly, Gare de Lyon — Meet & Greet is NO LONGER offered at Gare du Nord (do not quote or book it there). M&G prices are FIXED (CDG/Orly 250€ base for 2 pax + 50€/extra, Gare de Lyon 350€ + 75€/extra) — do NOT call get_quote for the M&G part. A connection (service_type='connection': arrival flight → connecting departure flight with fast-track between terminals) is billed as TWO M&G services = the location price ×2 (e.g. CDG 2 pax = 500€). For a combo with a transfer (e.g. CDG M&G + transfer to a hotel), call get_quote first for the transfer leg and pass the resulting quote_id + vehicle_id in `transfer`. If lead time is below the minimum (12h before pickup), returns LEAD_TIME_TOO_SHORT — the caller must fall back to manual notification instead of retrying. lead_time_override=true bypasses the 12h minimum ONLY after Sylvain has explicitly confirmed greeter availability for this exact request (WhatsApp admin approval 'mg ok'); never set it on your own initiative. A 90-minute floor always applies. If flight cannot be validated, returns FLIGHT_NOT_FOUND — ask the customer to re-confirm the flight number, or set flight_unverified=true with manual_airline + manual_origin to force-accept.

Input parameters:

- `additional_info` (string): Free-text notes (special requests, tail number for private aviation, etc.).
- `adults` (integer, required): Number of adults (min 1).
- `bags` (integer): Number of bags (used for vehicle sizing when combo transfer).
- `channel` (string): Caller channel identifier for observability (whatsapp, chatbot, mcp-direct, ...).
- `children` (integer): Number of children (in addition to adults).
- `email` (string, required): Client email — used for booking confirmation and Stripe receipt.
- `first_name` (string, required): Client first name.
- `flight_number` (string, required): Flight number for airports (AF1234) or train/Eurostar number for stations.
- `flight_unverified` (boolean): Set true only if the client confirmed the flight after AeroDataBox couldn't validate it. Requires manual_airline + manual_origin.
- `idempotency_key` (string): Optional UUID for safe retries. Same key returns the same payment_url for 24h.
- `last_name` (string, required): Client last name.
- `lead_time_override` (boolean): Bypass the 12h minimum lead time. ONLY when Sylvain has explicitly approved this exact booking after manually confirming greeter availability ('mg ok' admin flow) — never on client insistence. Hard 9…
- `location` (string, required): M&G location. cdg/orly = airport, gare_de_lyon = train station. Gare du Nord is no longer available.
- `manual_airline` (string): Required if flight_unverified=true. The airline name as stated by the client.
- `manual_arrival_time` (string): Optional. Local arrival time as stated by the client.
- `manual_origin` (string): Required if flight_unverified=true. Departure city as stated by the client.
- `phone` (string, required): Client phone with country code.
- `pickup_date` (string, required): YYYY-MM-DD format.
- `pickup_time` (string, required): HH:MM in Paris time. For arrivals this is the flight/train arrival time; for departures the time the greeter meets the client.
- `service_type` (string): arrival (pickup at airport/station), departure (drop-off + greeter for check-in), connection (transit: arrival flight → connecting departure flight; billed as 2 M&G services = location price ×2).
- `terminal` (string): Terminal number (airports only, e.g. '2E', '3').
- `train_coach` (string): Train coach number. Required for train stations.
- `train_pnr` (string): TGV reservation reference (PNR). Required when location is gare_de_lyon.
- `train_seat` (string): Train seat number(s). Required for train stations.
- `transfer` (object): Optional combo: bundles a private transfer in the same Stripe Checkout session. Generates 2 line items + 2 Zeplan bookings (M&G + transfer).

### `resolve_location` (~195 tokens)

Resolve a free-text location (city, airport, hotel, station, full address) to a canonical address + coordinates, using the same geocoder that Zeplan consumes for bookings. Use this BEFORE get_quote when the customer gives a fuzzy pickup/drop-off (e.g. 'CDG', 'Le Bristol', 'Gare du Nord', raw GPS). Returns up to 5 candidates with place_id, full address, type hint, and optionally coordinates.

Input parameters:

- `include_coords` (boolean): If true, also fetch GPS coords for the first result (extra API call). Defaults to false — request only when the agent has picked the right candidate.
- `query` (string, required): Free-text location. Examples: 'CDG', 'Charles de Gaulle Terminal 2E', 'Hotel Le Bristol Paris', 'Gare du Nord', '15 rue de la Paix Paris', '48.8566, 2.3522'.

### `send_driver_contact` (~163 tokens)

Email the booking's client their assigned driver's first name + phone. Pass `email` if you already have the client's address (e.g. from Zeplan get-booking); otherwise WP looks it up on the booking post. Returns { sent, to (masked), client_phone }. Voice agent use.

Input parameters:

- `booking_id` (string, required): Booking / reservation ID (= the WP payment post ID).
- `channel` (string): Caller channel for observability.
- `driver_first_name` (string, required): Driver's FIRST NAME only (never last name/company).
- `driver_phone` (string, required): Driver's phone number.
- `email` (string): Client email to send to. If omitted, WP looks it up on the booking post.
- `lang` (string): Email language.

### `resolve_flight` (~194 tokens)

Resolve a flight number to its airports, terminals, scheduled times, and status. Use BEFORE book_ride whenever the customer provides a flight number so that pickup time and terminal are correct. Input is tolerant: accepts 'AF007', 'AF 007', 'AF-007', 'af7', 'AFR007' — the tool normalizes internally. Returns an array of matching operations (usually 1 when direction is set).

Input parameters:

- `date` (string, required): Date in YYYY-MM-DD (NOT dd/mm/yyyy). This is the arrival date for pickups, departure date for dropoffs.
- `direction` (string): 'arrival' (default) when picking the passenger up at an airport, 'departure' when dropping off for a flight.
- `flight_number` (string, required): Flight number in any format: 'AF007', 'AF 007', 'af-7', 'AFR007'. Server normalizes.

### `resolve_train` (~219 tokens)

Resolve 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). Use whenever a customer books a station pickup/drop-off or a station Meet & Greet and gives a train number, to verify the departure/arrival time. A train number is DIGITS ONLY (TGV 6503, Lyria 9211, Eurostar 9031); a 6-char code like 'JWVLHH' is a ticket PNR and a long ref like 'W209656898' is an agency booking reference — those cannot be looked up here: extract route + time from the customer's confirmation instead.

Input parameters:

- `date` (string, required): Travel date in YYYY-MM-DD.
- `train_number` (string, required): Train number, digits only or with prefix: '9211', 'TGV 6503', 'Eurostar 9031'. Server normalizes.

### `get_service_info` (~33 tokens)

Get information about MyDriverParis services, coverage areas, airports served, and policies. Use this to answer customer questions.

### `get_cancellation_policy` (~39 tokens)

Get the full cancellation, refund and modification policy. Use this whenever a customer asks about cancelling, changing, or refunds — never guess the policy.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/com-mydriverparis-booking/mcp-mydriverparis#diagnostics

## Score history

- 2026-08-03: 59
- 2026-08-02: 58
- 2026-08-01: 58
- 2026-07-31: 57
- 2026-07-30: 58
- 2026-07-29: 58
- 2026-07-28: 57
- 2026-07-27: 56
- 2026-07-26: 56

## Links

- Remote endpoint: https://mcp-mydriverparis.mydriverparis.workers.dev/mcp
- Website: https://www.mydriverparis.com/
- Changelog RSS feed: https://verifymcp.io/servers/com-mydriverparis-booking/mcp-mydriverparis/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-mydriverparis-booking/mcp-mydriverparis/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-mydriverparis-booking/mcp-mydriverparis
