site
Server Details
Waste Carrier Check: the site's own MCP server — checker, enquiry (enquiry = a human handoff,...
- Status
- Healthy
- Uptime
- 99.4% over 22 days
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 6 tools
The checker tools are mostly distinct: start initializes, answer advances the flow, and tree provides the full graph for end-to-end reasoning. The enquiry tools are clearly separated by purpose, though checker_answer and checker_tree both deal with question/option data and could be confused at first glance.
There is a consistent 'checker_' and 'enquiry_' prefix, but the second half mixes verbs and nouns: checker_start/checker_answer are actions, checker_tree/enquiry_fields are resources, and submit_enquiry is a verb-noun pair. The convention is readable but not fully uniform.
Six tools is well-scoped for a server covering two related workflows: the checker Q&A flow and the enquiry submission flow. Each tool earns its place and the set is neither thin nor bloated.
The checker flow is complete with start, step-by-step traversal, and full tree access, while the enquiry flow covers instructions, schema discovery, and a confirmation-gated submission process. There are no obvious dead ends or missing operations for the stated domain.
Available Tools
6 toolschecker_answerAnswer a question, get the next stepAInspect
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?
With no annotations, the description carries the full burden. It does disclose the key behavior—returning either the next question or a final verdict—but it does not mention whether the flow state is mutated, what happens for invalid choices, or any session/state 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?
A single, information-dense sentence. The title and description work together without repetition or filler, and the key input/output behavior 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?
Adequate for a two-parameter tool: it names both inputs and describes the possible return. However, with no output schema and no annotations, it falls short of fully describing the response shape, error behavior, or what the caller should do with the returned next question/final verdict.
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 has 0% description coverage, so the description's clarification that `question` is a question id and `choice` is the chosen option's index is essential. It adds meaning beyond the raw property names and types, though it omits details like how to obtain valid question ids or bounds beyond minimum 0.
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 operation: given a question id and a choice index, return the next question or final verdict. This clearly differentiates it from sibling tools like checker_start or checker_tree, which have different roles in the flow.
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 is implied: use this when a user has answered a question and the flow should advance. However, it does not explicitly state when not to use it, what prerequisites exist (e.g., starting with checker_start), or how it relates to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
checker_startStart: Waste carrier, broker and dealer checkerCInspect
The first question of the Waste carrier, broker and dealer checker decision guide.
| 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 must carry the behavioral burden. It conveys that the result is the first question but does not disclose whether calling it resets progress, whether it is purely read-only, or what happens if it is called again after starting. These are material gaps for a decision guide 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?
A single sentence with no filler, and the key phrase 'first question' is front-loaded. It is appropriately short for a zero-parameter tool, though it could have added one usage sentence without becoming bloated.
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 start tool, identifying the returned resource as the first question is minimally adequate, but the lack of an explicit verb, return format, and relationship to checker_answer leaves the agent to infer next steps. No output schema exists to compensate.
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 already describes an empty object, so there is nothing for the description to add. Baseline 4 applies because parameter semantics cannot be improved further.
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 as the first question of the Waste carrier, broker and dealer checker decision guide, but it is a noun phrase rather than an explicit action such as 'starts the guide' or 'returns the first question'. It is distinguishable from checker_answer and checker_tree only by the word 'first', which is weak differentiation.
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 guidance is given on when to call this tool versus checker_answer, checker_tree, or the enquiry tools. The word 'first' implies it is the entry point, but the description does not state that subsequent answers should be sent to checker_answer or that it should not be used mid-guide.
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 Waste carrier, broker and dealer 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?
With no annotations, the description has full responsibility for disclosing behavior, but it only describes content coverage ('Every question, option and verdict') and does not mention side effects, auth needs, output format, or whether the tree is static. It gives no safety or execution context for a read operation. This is a significant transparency gap.
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, focused sentence that wastes no words and leads with the most important content ('Every question, option and verdict'). It is well-suited to the tool's simple purpose and quick 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?
The description conveys the tool's scope but omits details about the returned data's structure or how an agent should consume the tree in conjunction with sibling tools like checker_answer. Without an output schema or behavioral details, an agent has only a general sense of what to expect. For a no-parameter, no-schema tool, it is minimally adequate but not 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, so the schema provides no information to compensate. The description adds value by explaining that the tool exposes the entire decision tree, even though no parameters are involved. Baseline 4 is appropriate for a zero-parameter tool.
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 as the 'Waste carrier, broker and dealer checker guide' and states that it contains 'Every question, option and verdict,' which clearly conveys that the tool returns the entire decision tree. It distinguishes itself from siblings like checker_answer and checker_start, which handle individual steps. However, it lacks a direct action verb such as 'returns' or 'provides.'
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 phrase 'for reasoning end to end' implies the tool is intended for holistic traversal through the checker guide, giving some context on when to use it. There is no explicit mention of alternatives or conditions when a sibling tool would be more appropriate. The guidance remains implicit rather than directly stated.
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 Waste Carrier 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 of explaining behavior. It transparently covers key outcomes: no purchase, no guaranteed quote, free, and what information is returned. It also mentions that it returns who receives details, consent wording, and confirmation method, which is valuable beyond the basic tool name.
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, using three sentences to convey essential information. It front-loads the 'Read first' instruction and packs useful details efficiently. The slight overlap with the title is minor and does not reduce clarity.
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 simple 0-parameter nature of the tool and lack of output schema, the description gives a solid overview of what the tool returns: an explanation of submit_enquiry, its consequences, and the confirmation flow. It could be more explicit about the tool being read-only/informational, but the overall context suffices.
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 empty, so parameter semantics are not applicable. The baseline of 4 is appropriate since there is no parameter information to provide or clarify.
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 that this tool describes what submit_enquiry does, using phrases like 'States plainly' and 'Read first.' It distinguishes itself from the actual submit_enquiry operation by explaining that it provides information rather than performing the enquiry. However, it does not explicitly name the tool as a 'describe' action, relying on the name and context.
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' provides clear placement in the workflow, signaling that this tool should be used before undertaking an enquiry. It does not explicitly name alternative tools or exclusions, but the context and emphasis on reading before acting give enough direction for an agent.
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 Waste Carrier 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?
There are no annotations, so the description carries the burden of explaining behavior. It transparently lists the field attributes returned and notes that options exist only where applicable, which is useful. However, it does not explicitly state that this is a read-only lookup or describe any edge cases, output formatting, or error 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 two sentences long, front-loads the core purpose, and every sentence earns its place. It lists the exact content of the response and immediately connects the output to the related submission tool without any 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?
Given no parameters and no output schema, the description does a complete job. It explains what the tool returns, which attributes are included, that options are conditional, and how the returned field keys should be used. Nothing critical is missing for an agent to invoke 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?
The tool has zero parameters, so the parameter-semantics bar is set at baseline 4. The description adds relevant context by explaining that field keys are intended to be used with submit_enquiry, which helps an agent understand the meaning of the returned keys even though there are no input parameters to document.
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 (fields of the Waste Carrier Check enquiry) and enumerates the returned attributes, so an agent understands what the tool provides. It does not use an explicit verb like 'list' or 'get', and it does not contrast itself with sibling tools such as enquiry_describe, but the meaning is unambiguous.
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 clear usage context: obtain field definitions and then pass answers to submit_enquiry keyed by field key. It does not explicitly state when not to use this tool or name alternatives, but the usage context is strong enough to guide selection.
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 Waste Carrier 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 registered waste carrier or compliance specialist, 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 registered waste carrier or compliance specialist, 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?
Even though no annotations are provided, the description fully discloses the two-step side effects, the validation step, the confirmation token behavior, the follow-up email with a required link, and the exact meaning of consent. The description goes well beyond a minimal definition and clearly informs the agent about the tool's real-world impact.
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 detailed yet tightly structured, front-loading the critical 'not a purchase' distinction and then walking through the two steps in logical order. Every sentence contributes essential information: consent text, confirmation token, and the email-link condition. There is no fluff or repetition.
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?
With no output schema and no annotations, the description carries the full burden of explaining return values and side effects. It clearly states what step 1 returns (summary, consent line, confirmation token), what step 2 does, and the eventual user-facing outcome. The description leaves no critical gaps for an agent to call this tool successfully.
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 covers parameters with 100% description coverage, and the tool description adds crucial semantic context: answers must be keyed by field key from enquiry_fields, consent must be true in both steps, and confirmation must be the token returned in step 1. This transforms the parameters from generic fields into a meaningful workflow.
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 submits an enquiry to Waste Carrier Check, immediately distinguishes it from a purchase or guaranteed quote, and explains the two-step submission process. It names the specific resource and the action, making it distinct from sibling tools like checker_answer or enquiry_fields.
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 instructions: call first with answers and consent=true, show the user the summary and consent line, then call again only after user agreement and with the confirmation token. It also specifies the required consent wording and notes that the provider only sees the enquiry after the user clicks the email link, leaving no ambiguity about when and how to use the tool.
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.
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
Related MCP Connectors
Bin Rules Checker: the site's own MCP server — checker, enquiry (enquiry = a human handoff, not...
Drone Licence Checker: the site's own MCP server — checker, enquiry (enquiry = a human handoff,...
Catchment Checker: the site's own MCP server — checker, enquiry (enquiry = a human handoff, not...
Workplace Recycling Rules: the site's own MCP server — checker, enquiry (enquiry = a human...
Related MCP Servers
AlicenseAqualityAmaintenanceAn MCP server for in-loop design review of web previews. It enables agents to submit a preview URL, receive structured findings with suggested fixes, and recheck after applying changes, while never editing code itself.51MIT- AlicenseAqualityBmaintenanceUK due diligence MCP server — Companies House, corporate research, compliance checks183MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for grounded, cited AI: answers questions from live web sources, verifies claims, fact-checks documents, searches and reads URLs, summarises, classifies, and extracts fields, with usage tracking and status.1MIT
- AlicenseNot gradedqualityDmaintenanceUK rail freight compliance MCP server enabling checks on ORR licensing, ROGS safety certificates, RIR 2011 interoperability, TSI standards, RID dangerous goods, and Network Rail capacity access. It also prepares ORR inspection packs against the 14 Major Issues.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.