site
Server Details
Venue Capacity Check: the site's own MCP server — checker, enquiry (enquiry = a human handoff,...
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
6 toolschecker_answerAnswer a question, get the next stepCInspect
Given a question id and the chosen option (its choice index), return the next question or the final verdict.
| Name | Required | Description | Default |
|---|---|---|---|
| choice | Yes | ||
| question | Yes |
TDQS
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 states the operation returns the next step, but does not disclose what happens on invalid inputs, whether any state is mutated, or the nature of a final verdict. For a decision-taking tool, such context is important.
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 compact sentence that conveys the core interaction. No wasted words, though it could have added a bit more detail without becoming verbose.
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 2-parameter tool with no output schema and no annotations, the description gives the barest interaction model. It lacks details on edge cases, response format, usage context, and relationship to sibling tools, making it insufficient for robust autonomous invocation.
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 0%, so the description must compensate. It mentions the question id and the choice index, but does not explain what the 'choice' index refers to (e.g., zero-based vs. one-based), or the expected format of 'question'. The schema only specifies types, so the meaning is insufficiently defined.
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 uses a specific verb ('return'), resource (next question or final verdict), and states the input (question id and chosen option index). It clearly indicates the tool's function, though it does not explicitly differentiate it from sibling tools in the description itself.
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 gives implicit usage context: it should be used when you have a question id and a chosen option. However, it does not provide explicit guidance on when to use this tool versus alternatives like checker_tree, or what to do if the question is invalid or the choice is out of range.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
checker_startStart: Venue capacity checkerBInspect
The first question of the Venue capacity checker decision guide.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations to communicate safety or side effects, so the description carries the full burden. It only says the tool 'is' the first question, not what calling it does, what it returns, or whether it mutates any state. For a tool with zero annotations, this is too thin to be considered behaviorally transparent.
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 compact sentence with no filler or repetition. It front-loads the essential positional information about the tool and is appropriately sized for a tool with no parameters.
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?
There is no output schema and no annotation coverage, so the description should clarify what the agent can expect from calling the tool. The phrase 'first question' gives a reasonable clue, but the description does not specify the return shape, whether it just displays the question, or how the response feeds into checker_answer. It is minimally viable but leaves important context implicit.
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 tool has zero parameters, so the description does not need to explain any inputs. The baseline for a parameterless tool is high, and there is nothing missing here from a parameter semantics perspective.
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 'the first question' of the Venue capacity checker decision guide, which gives some positional context. However, it lacks a concrete action verb such as 'returns' or 'starts', so it is more of a label than a functional description. It does not explicitly distinguish itself from sibling tools like checker_answer beyond the word 'first'.
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?
Usage timing is implied: because it is described as the 'first question', an agent can infer it should be called before checker_answer or checker_tree. There is no explicit guidance about when not to use it or which alternative to choose, so the guidance is present only by implication.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
checker_treeThe whole decision treeBInspect
Every question, option and verdict of the Venue capacity checker guide, for reasoning end to end.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states what the tool contains (the tree) and not what it does when invoked (e.g., returns the full tree, is read-only, or has no side effects). This leaves the agent to guess the tool's runtime 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 one short sentence with no filler words. It could be slightly improved by starting with a verb to make it a full sentence, but it is efficient and readable.
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, annotation-free tool with no output schema, the description conveys the core idea (the full guide tree for end-to-end reasoning) but does not say what the agent will receive back or how to choose it over siblings. Slightly more guidance would make it 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?
The tool has zero parameters and the input schema is trivially 100% covered, so the description has no parameter documentation burden. Baseline for 0 params is 4, and the description does not interfere with parameter understanding.
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 resource precisely: the whole decision tree of the Venue capacity checker guide, and enumerates its contents ('every question, option and verdict'). This helps distinguish it from likely stepwise siblings like checker_answer or checker_start, though the lack of an explicit verb (e.g., 'returns', 'provides') stops it from being a 5.
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?
'For reasoning end to end' implies the intended use case—consulting the full tree rather than a single node—but there is no explicit contrast with alternatives or exclusions. The agent must infer when this is preferred over sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
enquiry_describeWhat you get: an ENQUIRY with a human (not a purchase, not a guaranteed quote)AInspect
Read first. States plainly what submit_enquiry does on Venue Capacity Check: it starts an enquiry with human providers who quote directly. Nothing is bought, ordered or paid; no quote is guaranteed; it is free. Also returns who receives the details, the consent wording, and how the person confirms.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does so well. It states that nothing is bought, ordered, or paid, that no quote is guaranteed, that it is free, and that it returns specific information including recipient details, consent wording, and confirmation method. This gives the agent a clear behavioral and output contract.
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 three sentences, front-loaded with the key instruction 'Read first,' and every sentence adds essential information. There is no repetition of schema content or filler, making it efficient and easy to parse.
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 there are no parameters, no annotations, and no output schema, the description sufficiently covers what the tool does, what it returns, and how it relates to submit_enquiry. An agent has everything needed to invoke it correctly and understand the result.
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 tool has zero parameters and the schema is empty, so parameter semantics are not needed. With 0 params, the baseline is 4, and the description appropriately focuses on the tool's purpose and output instead of parameter details.
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 uses a specific verb ('states') and resource ('what submit_enquiry does'), and clearly distinguishes this tool from submit_enquiry by presenting it as the read-first overview. The title reinforces the non-purchase, non-guaranteed nature, making the tool's purpose unmistakable.
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?
'Read first' explicitly signals when to use the tool: before submit_enquiry. It also clarifies the expected outcome and the fact that no transaction occurs, which helps an agent decide whether this is the right pre-submission step. It does not explicitly name alternatives, but the sibling context makes the intended placement clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
enquiry_fieldsThe questions the enquiry asksAInspect
Every field of the Venue Capacity Check enquiry: key, label, type, whether required, help text and the allowed options where there are any. Pass answers to submit_enquiry keyed by field key.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral disclosure burden. It clearly enumerates the returned content but does not state whether this is a read-only metadata lookup, how results are structured, or whether any side effects exist. The submit_enquiry pointer is helpful but relates to another tool's 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 a single, well-structured sentence that front-loads the resource name, lists the exact data attributes, and ends with a practical cross-reference to submit_enquiry. Every clause earns its place with no filler.
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?
As a simple, parameterless metadata tool with no output schema and no annotations, the description provides the essential return-value information: field key, label, type, required status, help text, and allowed options. It also gives one integration hint. It does not specify the response format (e.g., array or object), but for this simplicity that is a minor gap.
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 tool has zero parameters, so the baseline for this dimension is 4. The description adds useful semantic context by explaining that returned field keys are the same keys used when submitting answers to submit_enquiry, which helps an agent connect this tool's output to a sibling tool's input.
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 identifies the resource: every field of the Venue Capacity Check enquiry, and enumerates what is included (key, label, type, required, help text, options). It does not use an explicit verb like 'list' or 'retrieve', and the sibling 'enquiry_describe' could overlap in purpose, so it falls short of a 5.
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 that this tool is useful before submitting answers by saying 'Pass answers to submit_enquiry keyed by field key.' However, it does not explicitly state when to use this tool versus alternatives such as enquiry_describe or the checker_* tools, and gives no exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_enquirySubmit an ENQUIRY to human providers (two steps; not a purchase)AInspect
Submits an enquiry to Venue Capacity Check — NOT a purchase, NOT a guaranteed quote. Step 1: call with the answers (keyed by field key from enquiry_fields) and consent=true; it validates and returns a summary, the consent line and a confirmation token — show the person the summary and the consent line. Step 2: only if the person agrees, call again with the same answers, consent=true and the confirmation token; the enquiry is then submitted, and the person receives an email with a link they must click before any provider sees it. Consent means the person has read and agreed to: "Happy for my details to go to a relevant fire safety or licensing consultant, who'll contact me directly."
| Name | Required | Description | Default |
|---|---|---|---|
| answers | Yes | the person's answers, keyed by field key | |
| consent | Yes | true only when the person has agreed to: Happy for my details to go to a relevant fire safety or licensing consultant, who'll contact me directly. | |
| confirmation | No | the confirmation token from step 1, after the person has approved the summary |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden and does so thoroughly. It discloses that this is not a purchase or quote, that validation happens in step 1, that a confirmation token is required for step 2, and that the person receives an email link that must be clicked before any provider sees the enquiry.
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 dense but every sentence contributes essential information: what the tool is not, the two-step flow, the consent requirement, and the email-click behavior. It front-loads the core purpose and then provides the necessary procedural detail.
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 having no output schema, the description explains what step 1 returns (summary, consent line, confirmation token) and what happens after step 2 (email with a click link before provider visibility). For a multi-step tool with consent and confirmation mechanics, this is complete enough for correct invocation.
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?
Although schema coverage is 100%, the description adds crucial meaning beyond the schema: answers must be keyed by fields from enquiry_fields, consent must match the exact consent text, and confirmation is the token returned from step 1. This makes the parameters actionable rather than merely typed.
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 states a specific verb and resource ('Submits an enquiry to Venue Capacity Check') and clearly distinguishes itself from a purchase or a guaranteed quote. It also positions the tool as a two-step submission flow, making its purpose clear relative to the sibling enquiry tools.
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 step-by-step usage instructions: first call with answers and consent=true to get a summary and token, then call again with the token only after the person agrees. It also states the condition that consent requires the person to have read and agreed to the exact consent line.
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.
6 tool updates
- First observed
checker_answer - First observed
checker_start - First observed
checker_tree - First observed
enquiry_describe - First observed
enquiry_fields - First observed
submit_enquiry
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Catchment Checker: the site's own MCP server — checker, enquiry (enquiry = a human handoff, not...
Incorporate Where: the site's own MCP server — checker, enquiry (enquiry = a human handoff, not...
61Waste Carrier Check: the site's own MCP server — checker, enquiry (enquiry = a human handoff,...
Business Value Now: the site's own MCP server — checker, enquiry (enquiry = a human handoff, not...
Related MCP Servers
- FlicenseBqualityDmaintenanceMCP server for interacting with the Eventin booking system, enabling natural language management of bookings, events, and venues.2-

Dizko Events MCPofficial
AlicenseNot gradedqualityAmaintenanceMCP server that provides live event search, explainable recommendations, night planning, and agentic ticket purchase with safety rails, using Dizko's event inventory.550MIT- AlicenseBqualityCmaintenanceMCP server for AI-agent handoffs with client-encrypted WorkBaton checkpoints and WorkStash notes.212Apache 2.0
- FlicenseNot gradedqualityBmaintenanceMCP server orchestrating local multi-agent workflows with gated lifecycle, handoff events, and host-level continuation.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a distinct role: checker_start/answer/tree handle different aspects of the decision guide, and enquiry_describe/fields/submit handle separate parts of the enquiry flow. There is no meaningful overlap or risk of selecting the wrong tool for the intended action.
Most tools follow a clear snake_case pattern with domain prefixes like checker_ and enquiry_. The main deviation is submit_enquiry reversing the prefix pattern, and the second word is sometimes a noun and sometimes a verb, but the naming remains readable and predictable overall.
Six tools is well-scoped for this server's purpose: three for the decision guide and three for the enquiry submission flow. Every tool has a clear purpose and none feel redundant.
The tool set covers the full intended user journey: navigating the checker from start through answers to verdict, obtaining the full question tree for reasoning, understanding the enquiry process, retrieving field schemas, and submitting an enquiry with confirmation. No critical step is missing.