site
Server Details
New Employment Rules: 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 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 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.
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.
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.
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.
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.
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.
| 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 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.
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.
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.
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.
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.
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.
| 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 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.
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.
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.
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.
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.
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.
| 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 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.
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.
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.
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.
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.
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.
| 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 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.
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.
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.
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.
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.
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."
| 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 employment law or HR adviser, 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 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.
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.
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.
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.
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.
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.
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
Employment Rights Checker: the site's own MCP server — checker, enquiry (enquiry = a human...
Employment Contract Generator: the site's own MCP server — checker, enquiry (enquiry = a human...
Right to Work Wizard: the site's own MCP server — checker, enquiry (enquiry = a human handoff,...
STR Rules Check: the site's own MCP server — checker, enquiry (enquiry = a human handoff, not a...
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceA hiring desk for autonomous AI agents — MCP server, proof-of-work entry, machine-graded role tests.MIT
- AlicenseAqualityBmaintenanceAn 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.221MIT
- AlicenseBqualityCmaintenanceMCP server for AI-agent handoffs with client-encrypted WorkBaton checkpoints and WorkStash notes.212Apache 2.0
- FlicenseNot gradedqualityBmaintenanceAn MCP server that automates HR onboarding tasks including employee management, email, ticketing, meeting scheduling, and leave management, enabling AI agents to handle new-hire workflows from a single prompt.1-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.