booking
Server Details
Read-only booking info for Opus Lumiere photography, London: services, prices, availability.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.3/5 across 4 of 4 tools scored. Lowest: 3.6/5.
Each tool has a distinct purpose: checking availability, getting booking link, business hours, and listing services. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern: check_availability, get_booking_link, get_business_hours, list_services. The naming is uniform and predictable.
With 4 tools, the server is well-scoped for its purpose. Each tool covers a necessary aspect of the booking flow without unnecessary bloat.
The tool set covers the essential pre-booking information: services, availability, hours, and the booking link. Since payment and booking are intentionally handled on the website, the API surface is complete for its stated scope.
Available Tools
4 toolscheck_availabilityAInspect
Live open appointment slots for a service id (from list_services) over an optional date range (default next 5 weeks, max 62 days). Slots are not held - the customer reserves by completing checkout (with payment) at the booking_url.
| Name | Required | Description | Default |
|---|---|---|---|
| date_to | No | End date YYYY-MM-DD (optional). | |
| date_from | No | Start date YYYY-MM-DD (optional, default today). | |
| service_id | Yes | Service id from list_services. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses critical behavior: slots are not held and are only reserved after payment at booking_url, clarifying the non-reserving nature. It omits auth/rate limits, but the key state-related behavior is well covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences pack all essential information without redundancy. Every clause adds value, making it highly efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description adequately explains the tool's purpose and behavior. It could detail the response format (e.g., per-slot fields), but the core usage and constraints are sufficiently complete for a tool with simple inputs and clear intent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers all parameters, so baseline is 3. The description adds meaningful context: service_id is from list_services, and date_from defaults to today while date range is capped at 62 days, going beyond the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists live open appointment slots for a given service id, with an optional date range. It distinguishes itself from siblings like list_services and get_booking_link by focusing on availability and including the booking_url context.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly instructs that service_id comes from list_services and sets date range defaults/maximums, implying a prerequisite and constraints. It lacks explicit 'when not to use' or alternative comparisons, but the context is clear enough for correct selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_booking_linkAInspect
The page where a customer completes an Opus Lumiere booking, including secure card payment and deposit options. Optionally pass a service_id. Payment can never travel through this API - never ask users for card details.
| Name | Required | Description | Default |
|---|---|---|---|
| service_id | No | Optional service id from list_services. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavior. It does warn that payment can never go through this API, which is a crucial safety constraint. However, it does not clarify the return format (e.g., a URL), whether it is a read-only operation, or any authentication requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences and very concise. The first sentence states the core purpose, and the second adds an optional parameter and an important safety warning, with no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one optional parameter and no output schema, the description covers the essential purpose and a critical limitation. It could be more explicit about the return value (a link) but overall provides enough context 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.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents service_id with a helpful description referencing list_services. The description repeats 'Optionally pass a service_id' but adds no new meaning beyond the schema, which has 100% coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies the tool as providing the page where customers complete an Opus Lumiere booking, which clearly differentiates it from sibling tools like check_availability and list_services. However, it lacks an explicit verb like 'returns' or 'gets', slightly reducing precision.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for retrieving a booking link but does not explicitly state when to use it versus checking availability or listing services. The only guideline is the caution that payment cannot travel through this API, which is an exclusion rather than a positive usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_business_hoursAInspect
Opus Lumiere studio opening hours by weekday, with timezone (Europe/London). Sessions are by appointment - confirm a real slot with check_availability.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since there are no annotations, the description carries the full burden. It discloses the timezone (Europe/London) and the fact that sessions are by appointment, which is non-obvious and important for interpretation. It does not mention side effects or auth, but for a simple lookup tool, this is sufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with no filler. The main information is front-loaded, and the second sentence adds a crucial caveat.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless tool with no output schema, the description fully covers the essential information: what is returned (opening hours by weekday), timezone, and the appointment caveat. It also links to the relevant sibling tool, making it comprehensive in context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the baseline is 4. The description adds relevant output context (timezone, by-weekday) without needing to explain parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides studio opening hours by weekday, with a specific timezone. It distinguishes itself from sibling tools like check_availability (which confirms slots) and get_booking_link.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly tells the agent to use check_availability to confirm a real slot, implying this tool is for hours only. This provides clear guidance on when to use this tool versus an alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_servicesAInspect
List Opus Lumiere (London photography studio) services with prices in GBP, deposits, durations and category. Read-only. Booking and secure payment are completed on the website - see booking_url in the result.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It explicitly labels the operation as 'Read-only' and reveals that the result includes a booking_url, providing useful behavioral context beyond the structured schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, with the first sentence directly stating the purpose and the second adding critical read-only and booking context. Every word earns its place, and it is front-loaded for quick understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter, no-output-schema tool, the description fully covers what the tool does, what it returns (services with prices, deposits, durations, category, and a booking_url), and its read-only nature. No significant gaps exist.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so the baseline is 4. The description adds no parameter details because none are needed; it focuses on the output and usage, which is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists services with specific attributes (prices in GBP, deposits, durations, category) for a named studio. This distinguishes it from siblings like check_availability or get_booking_link, which serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says booking and secure payment are completed on the website, signaling this tool is only for listing services and not for booking. While it doesn't explicitly name alternative tools, the context plus sibling list makes the usage boundary clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityBmaintenanceA read-only MCP server for auditing Trafft booking data with tools to list services, employees, appointments, and customers without mutation endpoints.MIT
- Alicense-qualityDmaintenanceProvides read-only access to Microsoft 365 services including SharePoint, OneDrive, Outlook, Teams, and Calendar through the Microsoft Graph API, enabling users to search, browse, and retrieve content across their M365 suite.1MIT
- AlicenseAqualityCmaintenanceA read-only MCP server exposing AI Photo Editor's image generation styles, pricing, FAQ, and official links to AI clients like Claude Desktop.3MIT
- Flicense-qualityDmaintenanceThe owner-verified local business data + service & menu-price layer for AI agents. Owner-authored business profiles where every response carries provenance — verification level, completeness score, freshness timestamps, and upstream sources. * Search & profiles — find businesses by name, category, city, or geo-radius; full profiles with contacts, hours, media, ratings. * Price layer