orbit
Server Details
Orbit Zürich: Workshop-Räume, Preise und freie Slots abfragen, Buchungsanfragen stellen.
- 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.5/5 across 5 of 5 tools scored.
Each tool has a clear, distinct purpose: checking availability, listing rooms, listing services, quoting price, and requesting booking. No overlap or ambiguity.
All tools follow a consistent verb_noun pattern (check_availability, list_rooms, list_services, quote_booking, request_booking), all lowercase with underscores.
5 tools is well-scoped for a room booking assistant, covering essential information retrieval and booking request without unnecessary complexity.
Covers the full workflow: browse rooms/services, check availability, get quote, and submit booking request. Minor gap: no tool to modify or cancel a request, but it's a non-binding inquiry, so external handling is acceptable.
Available Tools
6 toolscheck_availabilityVerfügbarkeit prüfenAInspect
Prüft für ein Datum, welche Slots (vormittag, nachmittag, ganztags) in welchen Räumen noch frei sind, inklusive Standardpreisen in CHF. Ohne roomIds werden alle aktiven Räume geprüft.
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Datum im Format YYYY-MM-DD | |
| roomIds | No | Optional: nur diese Raum-IDs prüfen (IDs aus list_rooms) |
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 burden. It does not explicitly state read-only behavior, permissions, or side effects. The description implies a non-modifying query, but lacks explicit transparency on safety or limits.
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, concise and front-loaded with the main purpose. Every word contributes to understanding the tool's function and behavior, with no redundancy or fluff.
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 two-parameter tool with no output schema, the description sufficiently explains what the tool does, what it returns (free slots and prices), and the effect of the optional parameter. No additional context is needed.
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?
Input schema has 100% coverage with descriptions for both parameters. The description adds value by explaining the default behavior when 'roomIds' is omitted (checks all active rooms), which is a meaningful extension beyond the schema's description.
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 checks availability of slots (vormittag, nachmittag, ganztags) in rooms with standard prices for a given date. It distinguishes itself from sibling tools like list_rooms (listing rooms) and quote_booking/request_booking (booking actions) by being a read-only availability query.
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 explains the default behavior (all rooms when roomIds omitted) and implies use for checking availability before booking. However, it does not explicitly exclude other contexts or compare to siblings, but the clarity of purpose provides adequate guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_bookingVerbindlich buchenAInspect
Erstellt eine VERBINDLICHE Buchung mit den echten Konditionen des angemeldeten Kontos (Company-Pass-Deckung bzw. Individualrabatt) — reserviert den Slot sofort. Erfordert einen API-Token (Authorization: Bearer …, erstellbar unter https://the-orbit.ch/account/api-tokens). Prüfe vorher mit check_availability, ob die Slots frei sind, und mit quote_booking den Preis. Ohne Token: request_booking für eine unverbindliche Anfrage nutzen. Raum-IDs aus list_rooms, Service-IDs aus list_services.
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Optionale Bemerkungen | |
| rooms | Yes | Gewünschte Räume mit Slot und Datum (Raum-IDs aus list_rooms) | |
| title | No | Optionaler Titel des Anlasses | |
| endTime | No | Endzeit 'HH:00' (09–18) — Pflicht bei EIN_TAG, verboten bei Mehrtagen | |
| duration | Yes | Buchungsdauer; bei Mehrtagen buchen alle Räume GANZTAGS | |
| services | No | Optionale Zusatzservices (Service-IDs aus list_services) | |
| startTime | No | Startzeit 'HH:00' (08–17) — Pflicht bei EIN_TAG, verboten bei Mehrtagen | |
| contactName | Yes | Name der Kontaktperson | |
| contactEmail | Yes | E-Mail der Kontaktperson — hierhin geht die Bestätigung | |
| contactPhone | No | Optionale Telefonnummer | |
| participants | No | Anzahl Personen — Pflicht, wenn Verpflegung pro Person verrechnet wird |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full behavioral disclosure. It clarifies the binding nature, token requirement, and immediate slot reservation. However, it could elaborate on error cases (e.g., invalid token) or confirmation behavior, but still provides adequate transparency.
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 concise with two substantial sentences that front-load the core purpose and prerequisites. Every sentence provides essential context without redundancy, making it highly efficient.
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 the tool's complexity (11 parameters, no output schema), the description covers its purpose, prerequisites, and usage flow well. It lacks explicit mention of return value, but overall it is sufficiently complete for an agent to use effectively.
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 coverage is 100%, so baseline is 3. The description adds value by explaining authentication prerequisites and referencing list_rooms/list_services for IDs, which goes beyond the schema's basic 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 explicitly states it creates a binding booking with real conditions, immediately reserving the slot. It distinguishes itself from sibling tools like check_availability, quote_booking, and request_booking, making the purpose crystal clear.
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 provides explicit guidance: use check_availability before, quote_booking for price, and request_booking if no token. It also mentions the required API token and where to create it, leaving no ambiguity about when to use this tool vs alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_roomsRäume auflistenAInspect
Listet alle aktiven Räume des Orbit mit Kapazität, Etage, Ausstattung und Standardpreisen pro Slot (vormittag 08:00–12:00, nachmittag 13:00–18:00, ganztags 08:00–18:00). Räume mit bookableFrom in der Zukunft sind sichtbar, aber noch nicht buchbar.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | Optional: Kategorie-Slug zum Filtern (siehe `category.slug` im Ergebnis) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries burden. It discloses that future rooms are visible but not bookable, which adds behavioral clarity. No mention of read-only, but implied.
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: first enumerates return fields, second adds a critical behavioral note. No unnecessary 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?
Despite no output schema, description sufficiently explains return fields and the bookableFrom nuance, making it complete for a list tool.
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?
Only one optional parameter (category) with schema description coverage 100%. Description does not add extra meaning beyond the schema; it does not mention filtering by category.
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 it lists active rooms with specific attributes (capacity, floor, equipment, standard prices) and distinguishes from siblings by focusing on room info, not availability or booking.
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 when to use: to view room details. Siblings are distinct (check_availability, list_services, etc.), but no explicit when-not-to-use or alternative names given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_servicesServices auflistenAInspect
Listet alle buchbaren Zusatzservices (z.B. Catering, Moderation, Workshop-Begleitung) mit Standardpreisen. Services mit isAccompaniment: true sind exklusive Begleitformate (max. eines pro Buchung) und können einen Raum-Rabatt auslösen.
| 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 full burden. It discloses that services with `isAccompaniment: true` are exclusive and can trigger a room discount, adding behavioral context beyond a simple list. However, it does not explicitly state that the tool is read-only, which is implied by 'listet' (lists).
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: the first states the main purpose and examples, the second adds an important behavioral nuance. No wasted words, front-loaded with the core function.
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 return (list of services with prices and the `isAccompaniment` property). It could mention the output format (e.g., array of objects) but is sufficient for a simple list tool with sibling 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?
The input schema has zero parameters, and schema description coverage is 100%. The description does not need to add parameter details but provides value by explaining what the returned data includes (standard prices, `isAccompaniment` property). Baseline for 0 parameters is 4.
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 all bookable additional services with standard prices, provides examples (catering, moderation, workshop accompaniment), and highlights a specific property (`isAccompaniment`). This distinguishes it from sibling tools like `list_rooms` or `check_availability`.
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 when to use the tool (to get a list of services before quoting or booking) but does not explicitly state when not to use it or name alternatives. It provides clear context for the tool's output but lacks usage exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
quote_bookingPreis berechnenAInspect
Berechnet den unverbindlichen Gesamtpreis (Listenpreise, CHF) für eine Raum-/Service-Auswahl mit der echten Pricing-Engine des Orbit — inklusive Bestpreis-Logik, Wochenend-Zuschlag (+30%) und Verpflegungs-Pauschalen. Nutze dieses Tool statt Preise aus list_rooms selbst zusammenzurechnen. Mit API-Token wird die Quote personalisiert (Company-Pass-Deckung bzw. Individualrabatt des Kontos statt Listenpreis). Raum-IDs kommen aus list_rooms, Service-IDs aus list_services.
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Optionale Bemerkungen | |
| rooms | Yes | Gewünschte Räume mit Slot und Datum (Raum-IDs aus list_rooms) | |
| title | No | Optionaler Titel des Anlasses | |
| endTime | No | Endzeit 'HH:00' (09–18) — Pflicht bei EIN_TAG, verboten bei Mehrtagen | |
| duration | Yes | Buchungsdauer; bei Mehrtagen buchen alle Räume GANZTAGS | |
| services | No | Optionale Zusatzservices (Service-IDs aus list_services) | |
| startTime | No | Startzeit 'HH:00' (08–17) — Pflicht bei EIN_TAG, verboten bei Mehrtagen | |
| participants | No | Anzahl Personen — Pflicht, wenn Verpflegung pro Person verrechnet wird |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses key behaviors: best-price logic, 30% weekend surcharge, catering flat rates, and personalization based on account discounts. This is comprehensive for a pricing tool, leaving no hidden behavior.
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 concise, with two sentences that front-load the core purpose and then add necessary context. No redundant information.
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 8 parameters, no output schema, and moderate complexity, the description covers the essential calculation logic and input sources. It does not describe the output structure, but for a pricing tool the focus on behavior is appropriate. Slight gap in output expectations.
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 coverage is 100%, so the parameters are already described. The description adds value by explaining where to find room and service IDs (list_rooms, list_services) and hints at the relationship between duration and start/end time constraints. However, it does not elaborate on individual parameters beyond the schema.
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 calculates a non-binding total price using the real pricing engine, with specific details on logic (best price, weekend surcharge, catering). It distinguishes itself from manually calculating using list_rooms, effectively differentiating from siblings.
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 recommends using this tool instead of manually computing prices from list_rooms. It provides context on when personalization occurs (with API token) and where to obtain room/service IDs. However, it does not explicitly state when NOT to use it, such as for binding quotes.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
request_bookingBuchungsanfrage stellenAInspect
Stellt eine UNVERBINDLICHE Buchungsanfrage an das Orbit-Team. Die Anfrage reserviert den Slot noch NICHT — das Team prüft sie und bestätigt per E-Mail an die Kontaktadresse. Prüfe vorher mit check_availability, ob die gewünschten Slots frei sind, und nenne dem Menschen den Preis aus quote_booking. Raum-IDs aus list_rooms, Service-IDs aus list_services.
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Optionale Bemerkungen | |
| rooms | Yes | Gewünschte Räume mit Slot und Datum (Raum-IDs aus list_rooms) | |
| title | No | Optionaler Titel des Anlasses | |
| endTime | No | Endzeit 'HH:00' (09–18) — Pflicht bei EIN_TAG, verboten bei Mehrtagen | |
| duration | Yes | Buchungsdauer; bei Mehrtagen buchen alle Räume GANZTAGS | |
| services | No | Optionale Zusatzservices (Service-IDs aus list_services) | |
| startTime | No | Startzeit 'HH:00' (08–17) — Pflicht bei EIN_TAG, verboten bei Mehrtagen | |
| contactName | Yes | Name der Kontaktperson | |
| contactEmail | Yes | E-Mail der Kontaktperson — hierhin geht die Bestätigung | |
| contactPhone | No | Optionale Telefonnummer | |
| participants | No | Anzahl Personen — Pflicht, wenn Verpflegung pro Person verrechnet wird |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description highlights key behavioral traits: the request is non-binding, does NOT reserve the slot, the team reviews it, and confirmation is sent via email to the contact address. Since no annotations are provided, this clarity is essential.
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 minimal yet complete: two sentences plus a cross-reference to sibling tools. Every sentence adds unique value and the key point (non-binding) is front-loaded.
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?
Despite no output schema, the description covers prerequisites, parameter sourcing, and result (email confirmation). However, it does not specify what happens if the request fails or the format of the response status. Given the tool's simplicity, it is nearly complete.
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 coverage is 100%, but the description adds significant context: room IDs from list_rooms, service IDs from list_services, and for multi-day durations all rooms book GANZTAGS. It references external tools and explains behavioral constraints beyond the schema.
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 makes an 'UNVERBINDLICHE Buchungsanfrage' (non-binding booking request) to the Orbit-Team. It explicitly distinguishes itself from siblings like check_availability, quote_booking, list_rooms, and list_services by advising to use them for prerequisites.
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 provides explicit guidance: 'Prüfe vorher mit check_availability, ob die gewünschten Slots frei sind, und nenne dem Menschen den Preis aus quote_booking.' It tells when to use this tool (after checking availability and quoting) and implies not to use it for checking or quoting.
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!