site
Server Details
Eligible By Descent: 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, the description must carry the burden. It does disclose the primary behavior - returning the next question or the final verdict - but it does not say whether invoking this tool mutates/persists state, whether repeated calls with the same inputs are idempotent, or what happens on invalid choice indices.
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?
One sentence, front-loaded with the action, and every clause earns its place by linking inputs to outputs. No filler 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?
For a low-complexity 2-parameter tool this is nearly complete: it covers inputs and the two possible outcomes. The main gap is that there is no output schema and the shape of the 'final verdict' or 'next question' is not described, but the expected interaction pattern is clear.
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. It usefully reinterprets `question` as a question id and `choice` as the 0-based option index, which adds a little meaning beyond the raw schema. However, it leaves ambiguity about how the id is obtained (e.g., from checker_start) and whether the choice index references the current question's option list.
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 verb ('return'), the resource (next question / final verdict), and the inputs (question id + choice index), and the title reinforces the one-step advancement action. It also distinguishes itself from siblings like checker_start and checker_tree, which clearly handle starting and viewing the tree rather than stepping through it.
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 flow is clear: given a question and a chosen option, call this tool to progress to the next step. It does not explicitly state when NOT to use it or name checker_start/checker_tree as alternatives, but the context (answering a question to get the next step) is unambiguous enough that an agent can infer the right moment to invoke it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
checker_startStart: Which Portuguese descent route?BInspect
The first question of the Which Portuguese descent route? 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 carries the full burden of disclosing behavior. It only states that the tool is the first question; it does not disclose whether the tool is read-only, what it returns, whether it resets or starts state, or whether it has any side effects.
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 sentence with no filler, and the most important fact ('first question') is front-loaded. It is appropriately concise, though the lack of a verb makes it slightly less informative than it could be.
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 simple zero-parameter start tool, the description is minimally adequate, but without annotations or an output schema it should clarify what the agent should expect when calling the tool and how the call relates to follow-up tools. These gaps leave room for mis-selection.
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 empty schema is fully complete. There are no parameter semantics for the description to add, and the baseline of 4 applies because there is nothing missing.
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 ('Which Portuguese descent route? decision guide') and its position ('first question'), but it lacks an action verb. It does not explicitly say that invoking the tool starts the guide or displays the first question, so the tool's purpose is somewhat vague and must be inferred.
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 should be used at the beginning of the decision guide, but the description gives no explicit guidance about when to use it versus sibling tools like checker_answer or checker_tree. No alternatives or exclusions are mentioned.
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 Which Portuguese descent route? 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 burden of behavioral disclosure. It does reveal that the tool exposes the entire tree—every question, option, and verdict—rather than a partial view. It does not state the output format, size, or that it is a read-only informational tool, but for a zero-parameter static tree this is a tolerable 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, compact sentence that front-loads the key content ('Every question, option and verdict') and ends with the intended purpose. Every word adds value and there is no 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 simple, parameterless tool with no output schema, the description is reasonably complete: an agent knows what the tool contains and why it would be used. It could be slightly stronger by describing the response shape or how the tree is organized, but nothing is critically missing for basic invocation.
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 schema coverage is 100%, so there are no parameter semantics to clarify. The baseline for a parameterless tool is 4, and the description does not need to add anything.
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: the complete decision tree for the 'Which Portuguese descent route?' guide, containing every question, option, and verdict. It does not use a direct imperative verb like 'returns' or 'provides', but the meaning is unambiguous and 'whole decision tree' distinguishes it from likely step-by-step sibling tools.
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?
'For reasoning end to end' gives an implied usage context: use this tool when you need the full tree rather than one step. However, it does not explicitly state when to prefer checker_start or checker_answer instead, nor does it name any alternatives or 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 Eligible By Descent: 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 provided, the description carries the full burden of behavioral disclosure. It transparently states that the tool initiates an enquiry, involves no purchase or payment, offers no guaranteed quote, is free, and explains what the response contains. This is strong disclosure for a zero-parameter descriptive 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 'Read first.' Every sentence adds value: it identifies the related tool, clarifies what is not happening, states it is free, and summarizes the return content. Nothing is wasted.
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 tool with no input schema and no output schema, the description is remarkably complete. It explains the tool's role, the user's expectations, and the key elements of the response. The agent has enough information to decide when to call it and 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?
There are no parameters, so the description is not required to explain parameter behavior. The baseline of 4 applies, and the description appropriately focuses on the tool's purpose and output instead.
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's function: it describes what submit_enquiry does rather than performing the enquiry itself. It explicitly says it returns who receives details, consent wording, and confirmation method, which fully clarifies the tool's scope and differentiates it from submit_enquiry.
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 'Read first' directly instructs the agent to use this tool before submit_enquiry, giving clear contextual guidance. It also sets expectations by stating that nothing is bought, paid, or guaranteed, which helps prevent misuse. It does not explicitly name alternatives, but the intended sequence 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 Eligible By Descent 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 provided, the description carries the burden of explaining behavior. It discloses the content and purpose of the tool well, making clear what the returned fields include. It does not explicitly state that the tool is read-only or describe the output format, but the context strongly implies a metadata retrieval operation.
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 with no wasted words. The first sentence explains what the tool provides, and the second gives actionable guidance for using the output. It is appropriately concise and well-structured.
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 metadata listing tool, the description is largely complete: it names the enquiry, lists the field attributes returned, and connects the output to submit_enquiry. It does not compare with enquiry_describe, but this omission is minor given the tool's simple and self-contained purpose.
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 description correctly focuses on what information the tool returns rather than parameter details. The mention of field keys and submit_enquiry is useful contextual guidance. The schema is empty, so there is no parameter ambiguity to resolve.
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 returns every field of the Eligible By Descent enquiry, including key, label, type, required status, help text, and options. The title reinforces that it represents the questions the enquiry asks. It is specific about the resource but does not explicitly distinguish itself 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?
The description implies the tool should be used to discover field keys before calling submit_enquiry, stating 'Pass answers to submit_enquiry keyed by field key.' However, it does not explicitly compare against alternative tools like enquiry_describe or state when not to use this tool.
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 Eligible By Descent — 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 Portuguese nationality lawyers, 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 Portuguese nationality lawyers, 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, the description fully discloses the behavioral contract: no purchase/quote, consent is required, a confirmation token gates final submission, and the person receives an email with a click link before any provider sees the enquiry. It also exposes the exact consent wording the person must agree to.
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 dense but every sentence earns its place: purpose, non-use, step 1 behavior, step 2 behavior, and the email-link side effect are all covered. The two-step protocol is front-loaded and easy to follow.
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 complex two-step submit tool with no output schema and no annotations, the description covers necessary prerequisites, exact consent text, the summary/consent-line/confirmation output of step 1, and the post-submission email requirement. Nothing critical is missing for correct invocation.
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?
Although schema coverage is 100%, the description adds significant meaning: answers must be keyed by field key from enquiry_fields, consent must be true only after the person approves the specific consent line, and confirmation is the step-1 token to be reused in step 2. These semantics go well beyond the raw schema.
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 verb ('Submits an enquiry') and resource ('Eligible By Descent'), and immediately distinguishes the tool from a purchase or guaranteed quote. It also clearly frames the two-step nature of the action, so an agent can understand what the tool is for.
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 when-to-use instructions: step 1 validates and returns a confirmation token, step 2 is used only after the person approves the summary. It also excludes non-uses ('NOT a purchase, NOT a guaranteed quote') and references enquiry_fields as the source of answer keys.
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
Citizenship Descent Checker: the site's own MCP server — checker, enquiry (enquiry = a human...
61Catchment Checker: the site's own MCP server — checker, enquiry (enquiry = a human handoff, not...
61Right to Work Wizard: the site's own MCP server — checker, enquiry (enquiry = a human handoff,...
61Class Q Checker: the site's own MCP server — checker, enquiry (enquiry = a human handoff, not a...
61
Related MCP Servers
- AlicenseBqualityCmaintenanceMCP server for AI-agent handoffs with client-encrypted WorkBaton checkpoints and WorkStash notes.212Apache 2.0
- FlicenseNot gradedqualityBmaintenanceMCP server orchestrating local multi-agent workflows with gated lifecycle, handoff events, and host-level continuation.-
- AlicenseNot gradedqualityCmaintenanceAn MCP server that puts a human approval gate in front of long-running autonomous processes, with tools for proposals, process control, logs, parameters, records, and optional EVM balance checks.MIT
- AlicenseNot gradedqualityBmaintenanceMCP server for verified reuse infrastructure that lets agents query before work to obtain safe, permissioned results (exact component, source-free method, or abstention) with receiver-owned verification and non-disclosure guarantees.2Apache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool maps to a clear, distinct step: checker_start begins the guide, checker_answer advances it, checker_tree provides the full map, and the enquiry tools cover description, schema, and submission. There is no meaningful overlap or ambiguity between the tools.
The checker_* and enquiry_* prefixes clearly group the two workflows, and most names read predictably. Slight inconsistency exists because submit_enquiry reverses the prefix/verb pattern and checker_tree is a noun rather than an action, but the overall pattern remains understandable.
Six tools is well-scoped for the server's two distinct purposes: a three-tool decision guide and a three-tool enquiry workflow. Each tool earns its place and the count is neither bloated nor thin.
The decision guide covers start, progression, and full tree access, so agents can navigate the entire flow. The enquiry workflow covers explanation, field schema, and the full two-step submission process, leaving no obvious dead ends or missing steps.