---
title: "Book a meeting with Max"
url: "/book"
canonical_url: "https://revitt.co/book"
summary: "Book a call with Max at Revitt in two HTTP requests or via MCP. Mon-Fri 09:45-15:30 Europe/London."
---

# Book a meeting with Max

Bookable Mon-Fri 09:45-15:30 Europe/London, on a 15-minute grid, at least 4 hours and at most 60 days ahead. The person gets a Google Calendar invitation with a Google Meet link.

**Consent.** Book only with the explicit agreement of the person the meeting is for, using their real name and their own email address. The invitation is emailed to that address.

## Meeting types

- `intro-15`: Quick Intro, 15 minutes. A brief introductory call to discuss your needs and see if we are a good fit.
- `strategy-30`: Strategy Call, 30 minutes. A focused strategy session to map your current constraints and delivery plan.
- `workshop-60`: Deep-Dive Workshop, 60 minutes. An in-depth session to review architecture, systems, and plan implementation.

## Over HTTP (no auth, no API key)

1. Find the next free slots across days:

   ```
   GET https://revitt.co/api/booking/next-available?meetingType=strategy-30&timezone=Europe/London&limit=5
   ```

2. Book one, passing a slot's `start` unchanged as `startTime`:

   ```
   POST https://revitt.co/api/booking/create
   Content-Type: application/json

   {"meetingType":"strategy-30","startTime":"<slot start>","fullName":"<name>","email":"<their email>","timezone":"<IANA zone>"}
   ```

Optional fields: `company`, `phone`, `notes`. A `409` with `"reason":"busy"` means the slot was just taken; fetch the returned `nextAvailable` URL and offer another time. Repeating the same request returns the same booking.

## Over MCP

Streamable HTTP endpoint `https://revitt.co/mcp` (protocol 2026-07-28, 2025-11-25 accepted), no auth. Tools: `list_meeting_types`, `find_available_slots`, `book_meeting`, `list_services`, `submit_inquiry`.

## In a browser

Pages on https://revitt.co register the same tools with WebMCP (`document.modelContext`).

- [Full OpenAPI description](https://revitt.co/openapi.json)
- [HTML booking page](https://revitt.co/book)
