site
Server Details
Lease Renewal Cost: the site's own MCP server — enquiry (enquiry = a human handoff, not a...
- Status
- Healthy
- Uptime
- 100.0% over 22 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 3 tools
Each tool has a clearly distinct role: one explains the process, one provides the schema, one handles submission. The descriptions reinforce the separation, including explicit guidance on which tool to call first.
The naming is readable but not fully consistent: 'submit_enquiry' follows verb_noun, while 'enquiry_describe' reverses the order and 'enquiry_fields' is noun_noun. A more uniform pattern like describe_enquiry, get_enquiry_fields, submit_enquiry would improve consistency.
Three tools is well-scoped for a single enquiry workflow: explain, define fields, submit. Each tool earns its place without redundancy or unnecessary surface area.
The surface fully covers the enquiry lifecycle: understanding the process, retrieving field definitions, and submitting with a two-step confirmation and consent handling. No obvious dead ends or missing operations for the stated purpose.
Available Tools
3 toolsenquiry_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 Lease Renewal Cost: 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?
No annotations are provided, so the description carries the full behavioral burden. It discloses that the tool starts an enquiry with human providers, has no purchase or payment implications, does not guarantee a quote, is free, and returns recipient details, consent wording, and confirmation method. This is thorough and accurate for an informational read-only tool.
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 compact and front-loaded with the key directive 'Read first.' Every sentence adds meaningful information: what the tool does, what it does not do, and what it returns. There is no fluff or redundancy.
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 informational tool with no output schema, the description is complete. It explains the operation's meaning, its non-transactional nature, and the content of the response. An agent has everything it needs to invoke this tool appropriately.
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 parameter semantics is 4. The description appropriately focuses on behavior and return content rather than parameters, and no additional parameter information is needed.
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 clear informational purpose: it explains what submit_enquiry does on Lease Renewal Cost, distinguishing the tool from actual submission. It explicitly defines scope by saying nothing is bought, ordered, or paid, and no quote is guaranteed.
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 opening 'Read first' clearly signals that this tool should be used before submitting an enquiry, giving practical guidance about sequencing. It does not explicitly discuss when to use enquiry_fields or when not to use this tool, so exclusions are absent but context is 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 Lease Renewal Cost 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?
With no annotations, the description carries the full burden. It discloses what the tool returns (field metadata) and implies a read-only metadata lookup. It also notes that allowed options are included only 'where there are any', giving useful nuance about variable output content.
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 front-loading the resource and attributes, the second adding a direct usage instruction. No filler words; every sentence 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?
The description sufficiently explains the return content and how to use it with submit_enquiry. Given the tool's simplicity and lack of output schema, it does not need to explain errors or ordering. Slightly more explicit return structure (e.g., an array of field objects) could push it higher, but it is complete enough for an agent to invoke 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 input schema is empty and there are zero parameters, so the description bears no parameter-explanation burden. Baseline for zero parameters is 4, and the description appropriately stays focused on output rather than inventing parameter guidance.
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 returns every field of the Lease Renewal Cost enquiry, listing the exact attributes (key, label, type, required, help text, options). It differentiates from submit_enquiry by explaining that answers should be keyed by field key, but it does not explicitly differentiate from sibling enquiry_describe.
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 provides clear context: the tool exposes fields for the Lease Renewal Cost enquiry, and the output should be used to key answers when calling submit_enquiry. It does not offer explicit exclusions or compare against enquiry_describe, but the usage relationship is made concrete.
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 Lease Renewal Cost — 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 relevant commercial property solicitors, 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 relevant commercial property solicitors, 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?
No annotations are provided, so the description carries the full burden. It discloses that this is not a purchase, not a guaranteed quote, explains the two-step flow, the exact consent requirement, the email link that must be clicked, and the condition that submission only happens after the token is provided. This is highly transparent about 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 lengthy but packed with necessary operational detail: the two-step process, the consent line, the email link, and what to show the user. It is not overly verbose given the complexity. The most critical information (purpose and two steps) is front-loaded, and each sentence 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?
The tool has no output schema, so the description must explain what step 1 returns (summary, consent line, confirmation token) and what happens after step 2 (email with link, provider visibility). It also explains the consent requirement in full. This is complete for an agent to call 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?
Schema description coverage is 100%, so each parameter (answers, consent, confirmation) is already well described in the schema. The description adds contextual detail (e.g., answers keyed by field key, the confirmation token from step 1) but these mostly echo the schema. It does not go beyond what the schema already states, so 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 states a precise verb and resource ('Submits an enquiry to Lease Renewal Cost') and immediately clarifies what it is NOT (a purchase, a guaranteed quote). This distinguishes it from any purchase-like tools and is clearly separate from its siblings (enquiry_describe, enquiry_fields). The two-step nature is also front-loaded.
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 explicit step-by-step usage: first call with answers and consent, get a confirmation token, then call again with the token only if the person agrees. It also specifies showing the summary and consent line to the user. It does not explicitly compare with sibling tools, but their purposes are obvious from names; the usage guidance for this tool is thorough.
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.
3 tool updates
- First observed
enquiry_describe - First observed
enquiry_fields - First observed
submit_enquiry
Related MCP Connectors
Lease Extension Quotes: the site's own MCP server — enquiry (enquiry = a human handoff, not a...
Underpinning Costs: the site's own MCP server — enquiry (enquiry = a human handoff, not a...
Three Phase Cost: the site's own MCP server — enquiry (enquiry = a human handoff, not a...
Site Investigation Cost: the site's own MCP server — enquiry (enquiry = a human handoff, not a...
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceMCP server for qualifying and responding to inbound leads in seconds using a multi-agent AI pipeline.1MIT
- FlicenseNot gradedqualityDmaintenancePaid remote MCP server for agent data-access boundary reviews, permission scope evidence, sensitive data notes, and governance receipts.-
- AlicenseBqualityCmaintenanceModel Context Protocol (MCP) server offering rapid domain appraisal heuristics and secondary marketplace listing strategies243 npmMIT
- AlicenseNot gradedqualityCmaintenanceMCP commerce surface for refurbished datacenter hardware — GPU rigs, server racks, drive arrays, and network gear, with x402 agent-payment discovery.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.