Skip to main content
Glama

Server Details

New Employment Rules: the site's own MCP server — checker, enquiry (enquiry = a human handoff,...

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

6 tools
checker_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
choiceYes
questionYes

TDQS

A3.5/5.0
Behavior3/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 disclose the output contract—'return the next question or the final verdict'—which is helpful. But it stays silent on side effects (whether the answer is recorded or state advances), idempotency, validation of the question id, and behavior on an out-of-range choice index. For a state-advancing tool, this is a notable but not severe gap.

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?

A single 22-word sentence that is front-loaded with the inputs and ends with the output. There is no fluff, no repetition of the title, and no restating of schema contents. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has only 2 parameters, no output schema, and no annotations, so the description must cover the essentials. It names the two possible returns (next question or final verdict) but not their structure, and it does not address error behavior or invalid inputs. For a simple tool in a checker trio this is workable but leaves the agent to infer the response format.

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

Parameters3/5

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

Schema description coverage is 0%, so the description must compensate, and it does: it clarifies that question is an id, not a question string, and that choice is an index into the option list. The schema alone only offers type/minLength and type/minimum. The description stops short of specifying how choice aligns with the option list or confirming 0-based indexing, leaving a partial gap.

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 states a clear function: take a question id and a chosen option index, then return the next question or the final verdict. This distinguishes it from siblings like checker_start (which likely initiates the flow) and checker_tree (which likely shows the overall structure), though it does not explicitly contrast itself. The verb 'return' is slightly passive, but the input→output contract is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The usage context is implied: the agent should call this when it has a question and a choice to advance one step in the flow. However, there is no explicit when-to-use vs when-not-to-use guidance, and no alternatives are named. The sibling names hint at the flow shape, but the description leaves the selection decision to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

checker_startStart: Employer change checkerBInspect

The first question of the Employer change checker decision guide.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the behavioral disclosure burden. It only says this is the first question of a guide, offering no detail about whether the call is read-only, starts a session, or what the response contains. This is a significant gap for an agent deciding to invoke it.

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 clear sentence with no wasted words. It is appropriately sized for a tool with no parameters and is easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Although the tool is simple, there is no output schema and no description of what the tool returns or how it fits with the sibling decision-guide tools. An agent is left without information on what to expect after calling it or how to proceed, making the description incomplete.

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 and an empty input schema, so there are no parameter semantics to clarify. A baseline of 4 is appropriate; the description need not add parameter information.

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 identifies the tool as the first question of the Employer change checker decision guide, which is a specific resource and role. It is not a tautology, but it does not differentiate from siblings like checker_answer or checker_tree.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'first question' implies this tool is the entry point to the decision guide, but there is no explicit statement about when to use it versus the sibling tools. The usage context is only implied, not clearly specified.

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 treeAInspect

Every question, option and verdict of the Employer change checker guide, for reasoning end to end.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral disclosure burden. It accurately conveys that the tool exposes the entire guide structure rather than a single step, but it does not describe output format, size, or whether any stateful interaction is involved. This is acceptable for a simple read-only data dump but not richly transparent.

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 well-structured sentence that front-loads the key content ('Every question, option and verdict') and ends with the intended use case. No filler or redundant restatement of the title is present.

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 parameterless static-tree tool with no output schema, the description sufficiently communicates the content and intent. It could be slightly stronger by clarifying that it is a pure lookup with no dependencies, but nothing essential is missing for an agent to understand what it will receive.

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 input schema has zero parameters, so there is nothing to document. The description adds value by explaining what the returned whole-tree content covers, matching the baseline of 4 for parameterless tools.

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 states that the tool provides every question, option, and verdict in the Employer change checker guide, positioning it as a complete decision tree. It implicitly distinguishes itself from interactive siblings like checker_start and checker_answer, though it lacks an explicit verb such as 'returns' or 'lists'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

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 for obtaining the full decision tree in one call. However, it does not explicitly say when to choose this over checker_start, checker_answer, or the enquiry tools, nor does it mention exclusions.

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 New Employment Rules: 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.4/5.0
Behavior4/5

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

With no annotations, the description carries the full behavioral burden. It explicitly discloses that nothing is bought, ordered, or paid, that no quote is guaranteed, and that the action is free. It also states what the tool returns, giving the agent confidence that this is an informational read path.

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 compact, front-loaded with the most important call to action ('Read first'), and every sentence adds useful information. It avoids repetition and fluff while covering purpose, constraints, and return 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 explainer tool with no output schema, the description provides the key context an agent needs: what the related action does, what is guaranteed versus not, and what information will be returned. It could slightly expand on prerequisites, but 'Read first' sufficiently signals that no prior state is expected.

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 and an empty schema, so there are no parameter semantics to explain. The description appropriately focuses on purpose and output rather than inventing parameter guidance.

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 names a specific resource (submit_enquiry on New Employment Rules) and states the tool's exact role: explaining what that action does. It is clearly distinguished in the title as informational rather than transactional, and the 'Read first' framing makes the intent unmistakable.

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?

'Read first' gives a clear placement as an introductory/pre-flight tool before using submit_enquiry. It does not explicitly discuss when not to use the checker siblings, so it stops short of full alternative routing.

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 New Employment Rules 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/5.0
Behavior4/5

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

With no annotations, the description carries the burden, and it clearly discloses what the tool produces: every field's key, label, type, required flag, help text, and allowed options. It also conveys the relationship to submit_enquiry. It does not mention return formatting or edge cases, but for a no-parameter, read-only schema tool the disclosed behavior is adequate.

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 entire definition is two sentences with no filler: the first packs the full scope and content of the returned fields, and the second adds the integration hint with submit_enquiry. Every phrase contributes information.

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 introspection tool with no output schema and no annotations, the description covers what is returned, the level of detail, and how to use the result with a sibling tool. Nothing essential is missing for an agent to call it correctly.

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?

There are zero parameters and schema coverage is 100%, so the baseline is 4. The description adds relevant semantic value by stating that answers passed to submit_enquiry must be keyed by field key, clarifying how the returned keys are meant to be used.

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 specifies the resource and content: 'Every field of the New Employment Rules enquiry' with key, label, type, required, help text, and options. It lacks an explicit verb like 'list' or 'return', but the intent is unmistakable. It distinguishes itself from submit_enquiry by explaining that answers are keyed by field key, though it does not contrast with enquiry_describe.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The instruction 'Pass answers to submit_enquiry keyed by field key' implies this tool is the source of authoritative field keys before submission, which gives useful context. It does not explicitly state when to choose this over enquiry_describe or other siblings, nor does it give exclusions. The usage guidance is therefore present but indirect.

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 New Employment Rules — 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 employment law or HR adviser, who'll contact 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 a relevant employment law or HR adviser, who'll contact me directly.
confirmationNothe confirmation token from step 1, after the person has approved the summary

TDQS

A4.6/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 and meets it: it discloses that step 1 only validates (does not submit), that step 2 is the actual submission, that an email with a clickable link is sent, and that providers only see the enquiry after that link is clicked. It even quotes the exact consent line the person must have agreed to, making the side effects and consent requirement fully transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is lengthy but every sentence earns its place given the two-step protocol; the 'NOT a purchase' clarification is front-loaded and the consent line is quoted exactly to avoid ambiguity. The Step 1/Step 2 structure makes the sequence easy to follow. It could be marginally tightened, but the density is justified by the tool's complexity.

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?

There is no output schema, so the description correctly explains return values: a summary, the consent line, and a confirmation token on step 1. It also covers the post-submission behavior (email with link required before provider visibility). For a tool with no annotations and a complex two-step flow, nothing an agent needs to invoke it correctly 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?

Schema coverage is 100%, so the baseline is 3, and the description adds meaningful value on top: it explains the confirmation parameter as the token returned from step 1, clarifies that consent=true is the gate for both steps, and specifies that answers are keyed by field key from enquiry_fields. This flow-level semantics goes beyond the bare schema property descriptions.

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 and resource ('Submits an enquiry to New Employment Rules') and immediately disambiguates with 'NOT a purchase, NOT a guaranteed quote.' It further clarifies the two-step submission nature, which is unique among the siblings (enquiry_fields, checker_* tools), so an agent can tell this tool apart without opening the schema.

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 explicit step-by-step call sequencing: call first with answers and consent=true to get a summary and token, show the person the summary, then call again only if the person agrees, adding the confirmation token. It also references enquiry_fields for keying answers. It does not explicitly name excluded alternatives such as checker_* tools, but the purchase disclaimer and clear two-step protocol provide strong situational guidance.

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. 6 tool updates
    • First observedchecker_answer
    • First observedchecker_start
    • First observedchecker_tree
    • 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

  • A
    license
    Not graded
    quality
    B
    maintenance
    A hiring desk for autonomous AI agents — MCP server, proof-of-work entry, machine-graded role tests.
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    An MCP server that automates job applications by discovering postings from ATS boards, applying eligibility gates, scoring candidates, and drafting answers, while requiring human approval before submission. It respects anti-bot controls and only submits with explicit consent.
    22
    1
    MIT
  • A
    license
    B
    quality
    C
    maintenance
    MCP server for AI-agent handoffs with client-encrypted WorkBaton checkpoints and WorkStash notes.
    21
    2
    Apache 2.0
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation4/5

The checker_* and enquiry_* groups are clearly separated by domain, and within each group the tools serve distinct purposes: start, tree, and answer are interactive versus reference, while describe, fields, and submit map to explanation, schema, and action. The only slight ambiguity is between checker_answer and checker_tree, since both can determine next steps, but their intended usage contexts are different enough.

Naming Consistency4/5

Tools use consistent snake_case and group prefixes: checker_* and enquiry_*. However, the verb/noun ordering varies: checker_start and checker_answer are noun-verb, checker_tree and enquiry_fields are noun-noun, and submit_enquiry is verb-noun. This is a minor deviation rather than chaotic mixing.

Tool Count5/5

Six tools is well-scoped for the server's two clear workflows: an interactive decision guide and an enquiry submission flow. Each tool earns its place with no obvious redundancy or bloat.

Completeness5/5

The checker workflow is complete with a starting point, full tree, and step-by-step traversal. The enquiry workflow covers explanation, schema, and validated two-step submission with consent handling, so there are no obvious dead ends or missing operations.

Resources