Booking Request
Server Details
Self-authenticating booking-request receipt anchored to the Knox chain; never represents a person.
- 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 3.9/5 across 3 of 3 tools scored.
Each tool has a distinct purpose: listing agents, creating a booking request, and verifying a booking. There is no functional overlap.
All tool names follow the consistent verb_noun pattern in snake_case: list_represented_agents, request_booking, verify_booking.
With 3 tools, the set is minimal but well-scoped for a booking request server. Each tool is necessary and there are no redundant tools.
The set covers listing agents, requesting bookings, and verifying them, but lacks tools for updating, canceling, or listing bookings, which are notable gaps for a full booking lifecycle.
Available Tools
3 toolslist_represented_agentsAInspect
Enumerate the Bonis Concierge represented-agent roster. Returns slug, name, charter, bureau, archetype, liveness ('live' = verifiable POST endpoint and Knox event-chain integration today / 'charter' = description filed, integration in progress), and capability-page URL for each agent.
| Name | Required | Description | Default |
|---|---|---|---|
| livenessFilter | No | Optional filter on liveness. Default: 'all'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. Description explains the liveness filter values and return fields, but does not disclose side effects, rate limits, or 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?
Two concise sentences with no wasted words. Purpose is front-loaded, and details follow efficiently.
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 low complexity (1 optional param, no output schema), the description adequately covers the liveness filter and return fields. Minor gap: not specifying return format or types, but likely sufficient.
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 describes the livenessFilter parameter. The description adds valuable context by explaining the meanings of 'live' and 'charter', which goes beyond the schema's simple 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 verb 'Enumerate' and the resource 'Bonis Concierge represented-agent roster'. It lists the specific fields returned, distinguishing it from siblings which are about booking actions.
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?
No explicit guidance on when to use this tool versus alternatives. Does not mention that for booking-related tasks, one should use request_booking or verify_booking.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
request_bookingAInspect
Anchor a booking request for a represented Bonis Concierge agent. Returns a self-authenticating booking bundle: Knox anchor record + C2PA-aligned envelope (subset of C2PA 1.4 — adapted for booking events) + FRE 902(13)/(14)-shape representation affidavit. The agency does not adjudicate the merits of any booking, does not guarantee acceptance by the listed agent, does not handle payment under this primitive, and does not represent any natural person. Requires a Knox Bearer API key on the Authorization header — unauthenticated calls are rejected.
| Name | Required | Description | Default |
|---|---|---|---|
| brief | Yes | Plain-language description of the booking (10–4000 chars). | |
| notes | No | Optional free-form notes (≤ 2000 chars). | |
| startBy | No | Optional ISO-8601 date or date-time when the booking should begin. | |
| agentSlug | Yes | Roster slug of the listed agent (e.g., 'ofac-sdn-screening', 'content-provenance'). Must match the published Bonis Concierge roster — call list_represented_agents to enumerate. | |
| archetype | No | Optional requested presentation archetype if the listed agent supports multiple. | |
| budgetUsdMax | No | Optional maximum USD budget signal. Discovery field — no payment is collected under this primitive. | |
| contactEmail | No | Optional contact email (hashed before anchoring). Provide at least one of contactEmail or contactKnoxKeyId. | |
| contactKnoxKeyId | No | Optional Knox API key ID. Provide at least one of contactEmail or contactKnoxKeyId. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description provides significant behavioral details: requires Knox Bearer API key, unauthenticated calls rejected; declares what the tool does not do (adjudicate, guarantee, handle payment, represent person); describes the return value (Knox anchor record + C2PA envelope + affidavit). With no annotations, the description carries the full burden and does so well, though it could mention backend persistence or idempotency.
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 a single paragraph of five sentences, efficiently front-loading the primary purpose and then providing limitations and return details. It is concise without unnecessary words, though it could be slightly restructured for readability (e.g., bullet points for key points). It earns its place.
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 complexity (8 parameters, no output schema, no annotations), the description covers purpose, return value, authentication, and limitations. However, it lacks details about what happens after a booking request is made (e.g., pending state, notifications), and error conditions beyond unauthenticated. It is adequate but has noticeable gaps.
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 description coverage is 100%, so the schema already documents all parameters. The description adds some contextual notes (e.g., budgetUsdMax is a discovery field, no payment collected), but these are also present in the schema's descriptions. The description does not provide significant additional meaning beyond the schema, so a baseline 3 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's purpose: 'Anchor a booking request for a represented Bonis Concierge agent.' It uses a specific verb (anchor) and resource (booking request). It distinguishes from sibling tools by implying that list_represented_agents is for enumerating agents and verify_booking likely for verification, while this tool is for initiating a request.
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 does not explicitly state when to use this tool versus alternatives. It mentions that the agency does not guarantee acceptance or handle payment, and that unauthenticated calls are rejected, but does not provide clear guidance on when to use request_booking vs list_represented_agents or verify_booking. Usage is implied but not directly addressed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
verify_bookingAInspect
Verify an anchored booking-request record. Given a SHA-256 anchor hash (the payload_hash from a prior request_booking call), return the anchor record, predecessor hash, sequence number, and timestamp. Public — no authentication required. The verification path is also accessible at GET /api/knox/verify?hash=.
| Name | Required | Description | Default |
|---|---|---|---|
| hash | Yes | SHA-256 anchor hash (64 lowercase hex chars). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses it's a read operation (no mutation), lists return fields (anchor record, predecessor hash, sequence number, timestamp), and mentions a REST endpoint. With no annotations, it provides reasonable transparency, though it omits potential error cases or rate 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?
The description is brief, two sentences, with no unnecessary information. Every sentence adds value, clearly stating the purpose, usage context, and endpoint reference.
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?
The tool is simple with one parameter. The description lists return values, compensating for the lack of output schema. However, it does not mention error handling or what happens with an invalid hash, which would be helpful for completeness.
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% with a detailed description of the 'hash' parameter (pattern, required). The description adds minimal extra meaning beyond the schema, only tying it to a prior call. Baseline 3 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 'Verify an anchored booking-request record', providing a specific verb and resource. It distinguishes from sibling tools 'list_represented_agents' and 'request_booking' by focusing on verification, a distinct action.
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 specifies when to use ('Given a SHA-256 anchor hash from a prior request_booking call') and notes it's public with no authentication. However, it lacks explicit 'when not to use' or alternatives beyond the given context.
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!