Skip to main content
Glama

Server Details

BNG Quotes: the site's own MCP server — enquiry (enquiry = a human handoff, not a purchase);...

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

3 tools
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 BNG Quotes: 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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does this well: it states that nothing is bought, ordered, or paid for, that no quote is guaranteed, that the service is free, and it explicitly lists what the tool returns, including who receives the details, the consent wording, and confirmation mechanics.

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 three sentences with no wasted words. The most important guidance ('Read first') is front-loaded, followed by a plain explanation of the flow and then the return-value specifics. Every sentence earns its place.

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 zero-parameter, purely informational tool with no output schema, the description is complete. It explains what the tool does, the key caveats (no purchase, no guaranteed quote, free), and what information it returns. No critical context needed to call or interpret this tool is missing.

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

Parameters4/5

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

The tool has zero parameters, so there is no parameter documentation burden. The description adds useful context about what the returned information covers, which is the closest analogue to parameter semantics for this tool. A baseline of 4 is appropriate for a zero-parameter tool with a helpful description.

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 ('States plainly') and a specific resource ('what submit_enquiry does on BNG Quotes'), making the informational nature of this tool clear. It also distinguishes itself from the sibling submit_enquiry by explicitly not performing the submission, and from enquiry_fields by focusing on behavior and outcomes rather than input fields.

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 opening 'Read first' is a clear directive to consult this tool before acting, and the description explains what the underlying submit_enquiry flow entails. It does not explicitly name alternatives or say 'use this instead of enquiry_fields', but the context is clear enough for an agent to know this is the orientation/explanation tool.

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 BNG Quotes 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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.1/5.0
Behavior4/5

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 communicates an introspection-style behavior by describing the field definitions the tool exposes, and the guidance to 'pass answers to submit_enquiry' implies this tool itself does not submit. It does not explicitly state 'read-only' or describe the response container, but the phrasing sufficiently conveys a non-mutating schema lookup.

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 efficient sentence with the core subject front-loaded. Every phrase adds value: the resource, the enumerated metadata fields, and the relationship to submit_enquiry. There is no redundant or filler content.

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 zero-parameter introspection tool without an output schema, the description adequately explains what information will be available and how to use it. It could be slightly more complete by explicitly describing the return shape or by mentioning how enquiry_describe relates, but these are minor gaps given the tool's simplicity.

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

Parameters4/5

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

The tool has zero parameters, so the input schema is empty and there is nothing to document. The description still adds useful semantic context by explaining that the returned field keys are the values to use when calling submit_enquiry, which helps the agent connect this tool's output to the next step.

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

Purpose4/5

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

The description clearly identifies the resource ('the BNG Quotes enquiry') and enumerates the exact attributes returned: key, label, type, required flag, help text, and allowed options. It also connects this tool to submit_enquiry, but it does not explicitly contrast it with the sibling enquiry_describe, so it stops just short of fully distinguishing from all siblings.

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 gives clear workflow guidance: fetch the field metadata here, then pass answers to submit_enquiry keyed by field key. This implies when to use the tool, though it does not explicitly state exclusions or directly discuss when to prefer enquiry_describe.

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 BNG Quotes — 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 ecology consultants, who'll quote me directly."

ParametersJSON Schema
NameRequiredDescriptionDefault
answersYesthe person's answers, keyed by field key
consentYestrue only when the person has agreed to: Happy for my details to go to ecology consultants, who'll quote me directly.
confirmationNothe confirmation token from step 1, after the person has approved the summary

TDQS

A4.7/5.0
Behavior5/5

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

With no annotations, the description carries the full disclosure burden and does so thoroughly: it explains the two-step call pattern, the need for the confirmation token, the consent line that must be shown, and the email-link gate before any provider sees the enquiry. It also defines exactly what consent means, which is critical behavioral context.

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 front-loaded with the core clarification ('NOT a purchase, NOT a guaranteed quote') and then organized into Step 1 and Step 2. Every sentence carries necessary workflow, consent, or outcome information. No filler or repetition.

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 two-step tool with no annotations and no output schema, the description covers the required inputs, the intermediate returns (summary, consent line, confirmation token), the approval gate, and the downstream email-link behavior. An agent has enough context to invoke both steps correctly and understand the side effects.

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

Parameters4/5

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

The schema already documents all three parameters with 100% coverage, so the baseline is 3. The description adds workflow semantics beyond the schema: answers are keyed by enquiry_fields, consent must be true for validation, and confirmation is only used in the second call after the person approves. This meaningfully enriches the parameter understanding.

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?

States a specific verb ('submits') and resource ('an enquiry to BNG Quotes'), and immediately clarifies what it is not: not a purchase, not a guaranteed quote. This clearly distinguishes it from sibling tools like enquiry_describe and enquiry_fields, which are about describing or retrieving fields rather than submitting.

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?

Provides a step-by-step usage pattern (Step 1 and Step 2) and the condition for proceeding ('only if the person agrees'). It references enquiry_fields for keying answers, but does not explicitly name alternative tools or state when not to use this one. The workflow context is clear, but explicit exclusions are absent.

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. 3 tool updates
    • First observedenquiry_describe
    • First observedenquiry_fields
    • First observedsubmit_enquiry

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    Provides a quotation/quote-pricing MCP server for WorkBuddy, enabling querying pricing sources (org_api), securing JWT sessions, and supporting tools like lock-code and B-price lookups while keeping runtime isolated from Mixing.
    -
  • A
    license
    Not graded
    quality
    A
    maintenance
    MCP server for ConnectWise CPQ (Sell) enabling quote, line item, customer, term, template, tax code, recurring revenue, and user management via a 25-tool interface.
    Apache 2.0
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool covers a separate concern: explaining the process, providing the field schema, and submitting the enquiry. There is no overlap or ambiguity between them.

Naming Consistency3/5

The names are readable but not consistently patterned: enquiry_describe and enquiry_fields place the noun first, while submit_enquiry uses verb-first convention. This mix is understandable but lacks a uniform scheme.

Tool Count5/5

Three tools is exactly right for the narrow scope of submitting an enquiry. Each tool serves a clear and necessary purpose with no redundancy.

Completeness5/5

The tool set fully covers the enquiry workflow: orientation, field discovery, validation, consent, and confirmation. There are no obvious missing operations for the stated domain.

Resources