Skip to main content
Glama

Server Details

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

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

5 tools
cancel-bookingCancel BookingA
Destructive
Inspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenYesThe booking management token returned by create-booking.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already mark destructiveHint=true, and the description goes further by stating the action is irreversible and instructing to confirm with the guest. This adds meaningful context about consequences beyond the annotation, though it doesn't detail other potential side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core action, and every clause contributes meaning. It efficiently conveys purpose, prerequisite, and warnings without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given this is a simple destructive tool with one parameter and no output schema, the description is fully complete. It covers what the tool does, where the input comes from, the irreversible nature, and a required user confirmation, making it sufficient for an AI agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema provides 100% coverage for the token parameter, including its origin from create-booking. The description repeats this without adding extra semantic detail, so it provides no value beyond the schema baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Cancel' with the resource 'an existing booking', making the action unambiguous. It also specifies the required management token from create-booking, distinguishing it from sibling tools like get-booking-info or list-available-slots.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly states the prerequisite (token from create-booking) and advises confirming with the guest before calling, which acts as a usage guardrail. It doesn't explicitly name alternatives or exclusions, but the sibling context makes it evident this is the sole cancellation tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

create-bookingCreate BookingAInspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
cityNoGuest city.
dateYesBooking date in YYYY/MM/DD format (e.g. 2026/07/20). Note the slashes.
hourYesBooking hour in HH:MM format, taken from list-available-slots.
nameYesGuest first name.
petsNoNumber of pets.
emailYesGuest email address. The booking confirmation and management token are sent here.
optinNoMarketing opt-in flag (1 or 0).
phoneYesGuest phone number.
veganNoWhether the party includes vegan guests.
adultsYesNumber of adults.
babiesNoNumber of babies.
countryNoGuest country.
messageNoOptional message for the business.
surnameYesGuest last name.
childrenNoNumber of children.
latitudeNoGuest latitude, if known.
shift_idYesThe shift id, taken from list-available-slots.
highchairNoNumber of highchairs.
longitudeNoGuest longitude, if known.
pushchairNoNumber of pushchairs.
company_idYesThe company id, as returned by the find-company tool.
vegetarianNoWhether the party includes vegetarian guests.
wheelchairNoNumber of wheelchairs.
gluten_freeNoWhether the party needs gluten-free options.
guest_tokenNoExisting guest token, if the guest has booked before.
nuts_allergyNoWhether the party has a nut allergy.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations only include destructiveHint=false, so the description carries the transparency burden. It discloses the return behavior (reservation details with a token) and its downstream use. It doesn't mention failure modes or email side effects, but the core behavior is clearer than typical for a create operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences: the first states the purpose, the second covers requirements and return behavior. No filler, front-loaded, and every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a 26-parameter tool with no output schema, the description provides a concise overview of the workflow, prerequisites, and return token. It doesn't mention side effects like confirmation email, but that's covered in the schema. The description is sufficient for an agent to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the description mostly repeats key schema facts (date format, shift_id source) without adding new meaning. It groups contact details but doesn't explain optional parameters. Baseline 3 is appropriate since the schema already documents all parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Create') and resource ('a booking'), with clear context ('for a company as a guest'). It distinguishes from sibling tools like cancel-booking and get-booking-info by explicitly focusing on creation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description clearly states prerequisites: requires a date (YYYY/MM/DD), an hour, shift_id from list-available-slots, and guest contact details. It also explains how the returned token is used with get-booking-info and cancel-booking, providing workflow context. It doesn't explicitly state when not to use, but the sibling differentiation is implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

find-companyFind CompanyA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesThe company slug, as found in its booking page URL.
business_typeNoOptional business type filter.

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotation readOnlyHint=true already establishes the safe read-only nature. The description adds that it returns a public profile with services, opening hours, and booking configuration, but does not disclose other behavioral traits such as auth requirements or rate limits. This is useful context but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two focused sentences, front-loaded with the main action and return value, with no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is a simple lookup with no output schema, but the description covers the primary return fields and the key purpose of obtaining company_id. The optional business_type parameter is not mentioned in the description, but it is fully documented in the schema, so overall completeness is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with slug described as 'The company slug, as found in its booking page URL' and business_type as an optional filter. The description repeats the slug lookup but adds no new parameter semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource ('Find a company by its slug') and explicitly lists the returned content (services, opening hours, booking configuration). It also differentiates from sibling tools by noting it provides the company_id needed by the other tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Use this first to obtain the company_id needed by the other tools', giving clear context that it is a prerequisite lookup. It does not list explicit when-not-to-use cases, but the sibling tool names make the boundary obvious.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get-booking-infoGet Booking InfoA
Read-only
Inspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenYesThe booking management token returned by create-booking.
company_idYesThe company id the booking belongs to.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description adds the behavioral prerequisite that a management token from create-booking must be supplied. This provides useful auth-level context beyond the annotation. No side effects or return format are described, but the bar is lower given the readOnlyHint.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that front-loads the action and resource. It contains no redundant words and directly states the required token condition. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter read-only tool with fully documented schema and readOnlyHint annotation, the description is adequate. It states the purpose and the token prerequisite. The only minor gap is lack of error-case behavior or return format, but these are not required given the simplicity and existing structured data.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage for both parameters, so the schema already carries all parameter semantics. The description reiterates the token's origin but does not add new meaning beyond what the schema provides. Baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'Retrieve' and identifies the resource as 'details of an existing booking', clearly distinguishing it from siblings like cancel-booking, create-booking, find-company, and list-available-slots. It also references the originating create-booking token, giving unambiguous purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies clear usage context: it is the counterpart to create-booking, used after booking creation to retrieve details. It does not explicitly state when not to use this tool or name alternatives, but the context is clear enough for an agent to select it appropriately.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list-available-slotsList Available SlotsA
Read-only
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateYesThe date to check, in YYYY-MM-DD format (e.g. 2026-07-20).
company_idYesThe company id, as returned by the find-company tool.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With readOnlyHint=true, the description adds useful behavioral context by stating it returns shifts and bookable hours, and that shift_id and hour are used for booking creation. This goes beyond the annotation without contradicting it.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with no filler. The purpose and key downstream usage are conveyed efficiently, making it easy for an agent to scan and act.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with two well-documented parameters and no output schema, the description fully covers what the tool returns and how the result should be used. No additional context is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, and both parameters are already clearly documented. The description reinforces that the date and company_id identify the slots but adds no new parameter-level detail, so a baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') with a clear resource ('available booking slots for a company on a given date'), which precisely distinguishes this read-only tool from sibling tools like create-booking and cancel-booking.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool should be used before creating a booking by instructing to use the returned shift_id and hour when creating a booking. It clearly positions the tool in the booking workflow, though it does not explicitly state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updates
    • First observedcancel-booking
    • First observedcreate-booking
    • First observedfind-company
    • First observedget-booking-info
    • First observedlist-available-slots

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Manage Resy reservations via natural language: search restaurants, book tables, and manage reservations, favorites, and Priority Notify.
    15
    456
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Search 8,000+ corporate event venues across 40+ cities. Tools for venue search by capacity/category, pricing guides, expert advice articles, and inquiry handoff. Read-only, PII-redacted, UTM-attributed.
    7
    14
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables restaurant reservation management through SevenRooms API, allowing users to create reservations and query available time slots with guest details and party size information.
    -
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool has a clear, distinct role: find-company for lookup, list-available-slots for availability, create-booking for reservations, get-booking-info for retrieval, and cancel-booking for cancellation. No overlapping purposes.

Naming Consistency5/5

All tool names follow a consistent verb-noun pattern with lowercase hyphenated style (cancel-booking, create-booking, find-company, get-booking-info, list-available-slots). Perfectly predictable.

Tool Count5/5

Five tools are well-scoped for a booking system, covering the essential guest-facing operations without unnecessary additions. The count feels appropriate and focused.

Completeness4/5

The core booking lifecycle (create, read, cancel) is covered, along with prerequisites like company lookup and slot listing. An update/modify booking operation is missing, which is a minor gap but not critical for the primary use case.

Resources