# com.bookingmaven/marketplace (remote · mcp.bookingmaven.com)

Book, reschedule and cancel appointments at any business on the BookingMaven marketplace.

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

## Components

- remote · `mcp.bookingmaven.com`: 69/100 (this document), [markdown](https://verifymcp.io/servers/com-bookingmaven-marketplace/mcp.md), [page](https://verifymcp.io/servers/com-bookingmaven-marketplace/mcp)

## Channel facts

- Endpoint: `https://mcp.bookingmaven.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.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**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation check failed: no authorisation is required to call this server, and it exposes a tool marked destructive (cancel_appointment).
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - 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**: 74/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1057 tokens (~96/item across 11 items; 11 tools + 0 resources), lean.
  - 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-bookingmaven-marketplace https://mcp.bookingmaven.com/mcp
```

### Codex

```toml
[mcp_servers.com-bookingmaven-marketplace]
url = "https://mcp.bookingmaven.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-bookingmaven-marketplace": {
      "type": "remote",
      "url": "https://mcp.bookingmaven.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-bookingmaven-marketplace --url https://mcp.bookingmaven.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  com-bookingmaven-marketplace:
    url: "https://mcp.bookingmaven.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "com-bookingmaven-marketplace": {
      "type": "http",
      "url": "https://mcp.bookingmaven.com/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 69, +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-07-31 (score 68, +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 67, +1)

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

### 2026-07-28 (score 66, +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 65, +1)

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

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

First indexed and scored.

## MCP tools (11)

### `search_businesses` (~100 tokens)

Search for service businesses by location. Returns businesses with their booking URLs, ratings, and descriptions. Use get_business to see services and get_availability to check open slots.

Input parameters:

- `category` (string): Filter by business type
- `limit` (number): Max results (default 10)
- `location` (string, required): City, city+state, or zip code. E.g. 'Brooklyn NY', 'Austin, TX', '90210'

### `get_business` (~76 tokens)

Get full details for a business including services (with IDs and prices), staff, and hours. You need service_id and optionally staff_id before calling book_appointment.

Input parameters:

- `business_slug` (string): Alias for slug — the business slug from search_businesses results
- `slug` (string): The business slug from search_businesses results

### `get_availability` (~123 tokens)

Get open appointment slots for a business on a specific date. Returns ISO timestamps for each available slot. Use these start_time/end_time values when calling book_appointment.

Input parameters:

- `business_slug` (string, required): The business slug from search_businesses results
- `date` (string, required): Date to check in YYYY-MM-DD format
- `staff_id` (string): Specific staff member ID (from get_business). Omit to check any available staff.
- `timezone` (string): IANA timezone string (e.g. 'America/New_York'). Defaults to business local time.

### `book_appointment` (~226 tokens)

Reserve an appointment slot at a service business. Provide a unique idempotency_key to safely retry without double-booking. Get service_id from get_business and start_time/end_time from get_availability.

Input parameters:

- `business_slug` (string, required): The business slug from search_businesses results
- `customer_email` (string, required): Customer email address
- `customer_name` (string, required): Customer full name
- `customer_phone` (string): Customer phone number (optional)
- `end_time` (string, required): ISO 8601 datetime for the appointment end (from get_availability)
- `idempotency_key` (string, required): Unique key to prevent duplicate bookings (e.g. UUID). Reuse the same key to safely retry.
- `notes` (string): Any special requests or notes for the business
- `service_id` (string, required): The service ID from get_business results
- `staff_id` (string): Staff member ID (from get_business). Omit to auto-assign.
- `start_time` (string, required): ISO 8601 datetime for the appointment start (from get_availability)

### `get_booking` (~73 tokens)

Look up the current status/time of a booking you made. Requires the booking_id and the lookup_token that book_appointment returned. No account needed.

Input parameters:

- `booking_id` (string, required): The booking_id returned from book_appointment
- `lookup_token` (string, required): The lookup_token returned from book_appointment for this booking

### `cancel_appointment` (~74 tokens)

Cancel a booking you made. Requires booking_id and the lookup_token from book_appointment. Safe to retry (idempotent). No account needed.

Input parameters:

- `booking_id` (string, required): The booking_id returned from book_appointment
- `lookup_token` (string, required): The lookup_token returned from book_appointment for this booking

### `reschedule_appointment` (~145 tokens)

Move a booking you made to a new time. Requires booking_id, the lookup_token from book_appointment, and new_start_time/new_end_time (ISO 8601, from get_availability). The new slot is checked for conflicts. No account needed.

Input parameters:

- `booking_id` (string, required): The booking_id returned from book_appointment
- `lookup_token` (string, required): The lookup_token returned from book_appointment for this booking
- `new_end_time` (string, required): ISO 8601 datetime for the new appointment end (from get_availability)
- `new_start_time` (string, required): ISO 8601 datetime for the new appointment start (from get_availability)

### `create_account` (~81 tokens)

Get a BookingMaven signup link pre-filled with the customer's details. The customer visits the link to set their password and activate their account, which links their past bookings.

Input parameters:

- `email` (string, required): Customer email (use the same email used for booking)
- `name` (string, required): Customer full name
- `phone` (string): Customer phone number (optional)

### `start_business_signup` (~69 tokens)

Get a link for a business owner to sign up and list their business on BookingMaven. Returns a URL with optional pre-filled details.

Input parameters:

- `business_name` (string): Name of the business
- `category` (string): Type of business
- `email` (string): Business owner email

### `list_my_bookings` (~48 tokens)

List all appointments booked with your email address. Requires signing in (OAuth) — your AI must be connected with an authenticated account that has a verified email. Returns your upcoming and past bookings.

### `link_account` (~42 tokens)

Link the guest bookings you made with your email to your signed-in account so you can manage them from your account. Requires signing in (OAuth) with a verified email.

## Diagnostics

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

## Score history

- 2026-08-03: 69
- 2026-08-02: 68
- 2026-08-01: 68
- 2026-07-31: 68
- 2026-07-30: 67
- 2026-07-29: 66
- 2026-07-28: 66
- 2026-07-27: 65
- 2026-07-26: 64

## Links

- Remote endpoint: https://mcp.bookingmaven.com/mcp
- Website: https://bookingmaven.com/
- Changelog RSS feed: https://verifymcp.io/servers/com-bookingmaven-marketplace/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-bookingmaven-marketplace/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/com-bookingmaven-marketplace/mcp
