# Upsalt Booking (remote · ai.upsalt.io)

Search Upsalt venues, check availability, and book, view, or cancel a reservation.

- Trust score: 61/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-21

## Components

- remote · `ai.upsalt.io`: 61/100 (this document), [markdown](https://verifymcp.io/servers/everyways-upsalt-booking/mcp-booking.md), [page](https://verifymcp.io/servers/everyways-upsalt-booking/mcp-booking)

## Channel facts

- Endpoint: `https://ai.upsalt.io/mcp/booking`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## 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-21.

- **Endpoint Security**: 46/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-booking).
  - HTTPS enforcement could not be verified: the plaintext port answered with HTTP 405, which proves neither a plaintext path nor enforcement.
  - 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**: 74/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 841 tokens (~168/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 17/100
  - Stability observed for 5 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 everyways-upsalt-booking https://ai.upsalt.io/mcp/booking
```

### Codex

```toml
[mcp_servers.everyways-upsalt-booking]
url = "https://ai.upsalt.io/mcp/booking"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "everyways-upsalt-booking": {
      "type": "remote",
      "url": "https://ai.upsalt.io/mcp/booking",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add everyways-upsalt-booking --url https://ai.upsalt.io/mcp/booking --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  everyways-upsalt-booking:
    url: "https://ai.upsalt.io/mcp/booking"
```

### Other

```json
{
  "mcpServers": {
    "everyways-upsalt-booking": {
      "type": "http",
      "url": "https://ai.upsalt.io/mcp/booking"
    }
  }
}
```

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-21 (score 61, +1)

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

### 2026-08-19 (score 60, +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-08-17 (score 59, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-16 (score 58)

First indexed and scored.

## MCP tools (5)

### `find-company` (~73 tokens)

Find Company

Find a company by its slug and return its public profile: services, opening hours, and booking configuration. Use this first to obtain the company_id needed by the other tools.

Input parameters:

- `business_type` (string): Optional business type filter.
- `slug` (string, required): The company slug, as found in its booking page URL.

### `list-available-slots` (~89 tokens)

List Available Slots

List the available booking slots for a company on a given date. Returns shifts and bookable hours; use the shift_id and hour when creating a booking.

Input parameters:

- `company_id` (integer, required): The company id, as returned by the find-company tool.
- `date` (string, required): The date to check, in YYYY-MM-DD format (e.g. 2026-07-20).

### `create-booking` (~431 tokens)

Create Booking

Create a booking for a company as a guest. Requires a date (YYYY/MM/DD), an hour and shift_id obtained from list-available-slots, and the guest contact details. On success, returns the reservation details including a token that can be used with get-booking-info and cancel-booking.

Input parameters:

- `adults` (integer, required): Number of adults.
- `babies` (integer): Number of babies.
- `children` (integer): Number of children.
- `city` (string): Guest city.
- `company_id` (integer, required): The company id, as returned by the find-company tool.
- `country` (string): Guest country.
- `date` (string, required): Booking date in YYYY/MM/DD format (e.g. 2026/07/20). Note the slashes.
- `email` (string, required): Guest email address. The booking confirmation and management token are sent here.
- `gluten_free` (boolean): Whether the party needs gluten-free options.
- `guest_token` (string): Existing guest token, if the guest has booked before.
- `highchair` (integer): Number of highchairs.
- `hour` (string, required): Booking hour in HH:MM format, taken from list-available-slots.
- `latitude` (number): Guest latitude, if known.
- `longitude` (number): Guest longitude, if known.
- `message` (string): Optional message for the business.
- `name` (string, required): Guest first name.
- `nuts_allergy` (boolean): Whether the party has a nut allergy.
- `optin` (integer): Marketing opt-in flag (1 or 0).
- `pets` (integer): Number of pets.
- `phone` (string, required): Guest phone number.
- `pushchair` (integer): Number of pushchairs.
- `shift_id` (integer, required): The shift id, taken from list-available-slots.
- `surname` (string, required): Guest last name.
- `vegan` (boolean): Whether the party includes vegan guests.
- `vegetarian` (boolean): Whether the party includes vegetarian guests.
- `wheelchair` (integer): Number of wheelchairs.

### `get-booking-info` (~58 tokens)

Get Booking Info

Retrieve the details of an existing booking using the management token returned by create-booking.

Input parameters:

- `company_id` (integer, required): The company id the booking belongs to.
- `token` (string, required): The booking management token returned by create-booking.

### `cancel-booking` (~52 tokens)

Cancel Booking

Cancel an existing booking using the management token returned by create-booking. This action is irreversible; confirm with the guest before calling it.

Input parameters:

- `token` (string, required): The booking management token returned by create-booking.

## Diagnostics

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

## Score history

- 2026-08-21: 61
- 2026-08-20: 60
- 2026-08-19: 60
- 2026-08-18: 59
- 2026-08-17: 59
- 2026-08-16: 58

## Links

- Remote endpoint: https://ai.upsalt.io/mcp/booking
- Changelog RSS feed: https://verifymcp.io/servers/everyways-upsalt-booking/mcp-booking.xml
- Changelog JSON feed: https://verifymcp.io/servers/everyways-upsalt-booking/mcp-booking.json
- HTML version of this page: https://verifymcp.io/servers/everyways-upsalt-booking/mcp-booking
