Skip to main content
Glama

Server Details

Citizenship Descent Checker: the site's own MCP server — checker, enquiry (enquiry = a human...

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 stepBInspect

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

B3.4/5.0
Behavior2/5

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 behavioral disclosure. It does state the return behavior ('next question or the final verdict'), but it does not disclose whether choosing an option records/persists the answer, whether the operation is reversible, or what happens on an invalid choice or unknown question id. This is a meaningful gap for an operation that advances a flow.

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 concise sentence with no filler. It front-loads the inputs and immediately states the return behavior, making every word earn 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?

For a low-complexity tool with two scalar parameters and no output schema, the description explains the core inputs and output adequately. However, it lacks guidance on how to obtain the initial question (likely via sibling checker_start), what the returned object looks like, and how errors or terminal states are signaled beyond 'final verdict'.

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 0%, so the description must compensate for the schema's bare 'string' and 'integer, minimum 0' definitions. The description usefully clarifies that 'question' is a question id and 'choice' is the zero-based index of the chosen option. The phrasing 'question id' slightly conflicts with the parameter name 'question', but it still adds enough meaning for an agent to invoke the tool correctly.

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 action: given a question id and chosen option index, return the next question or final verdict. This identifies both the verb and resource, and clearly situates the tool within a sequential question flow. It does not explicitly differentiate from siblings like checker_start or checker_tree, but the 'next step' framing implicitly distinguishes it.

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 description implies when to use the tool: when you have a current question id and have selected an option. However, it does not explicitly state when not to use it, nor does it point to alternatives such as checker_start for beginning a flow or checker_tree for viewing the overall structure.

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

checker_startStart: Citizenship by descent checkerBInspect

The first question of the Citizenship by descent 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?

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states that this is the first question, but does not say whether the tool returns a question, initializes a session, or simply provides static content. Important behavioral expectations such as statefulness or output format are not addressed.

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 a single concise sentence that front-loads the core purpose. It is appropriately brief for a simple tool, though it could be slightly more informative without becoming verbose.

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?

For a simple no-parameter starting tool, the description provides enough context to identify the checker domain and position in the flow. However, it does not describe what the agent should expect in return or how to proceed to the next step, and with no output schema this information is not otherwise available.

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 the schema is empty, so there are no parameter semantics for the description to clarify. This matches the baseline for a no-parameter tool, and no additional parameter-related information is necessary.

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 identifies the tool as the entry point to the Citizenship by descent checker by referring to 'the first question' of the decision guide. It is not a tautology, and it communicates the resource and stage, though it lacks an explicit verb like 'returns' or 'displays' and does not explicitly distinguish itself from sibling tools.

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?

Usage is implied: an agent can infer this tool should be used when beginning the citizenship-by-descent checker, since it presents the first question. However, there is no explicit guidance about when to use it versus checker_answer or checker_tree, and no mention of alternatives or prerequisites.

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 Citizenship by descent checker guide, for reasoning end to end.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.7/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 full burden of explaining behavior. It states what the tree contains but does not explicitly say that calling the tool is read-only, what the returned structure looks like, or whether the result is large or expensive to fetch. Some behavior is implied by 'guide,' but explicit disclosure is missing.

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 sentence with no filler. It front-loads the essential content—'Every question, option and verdict'—and adds the purpose clause efficiently. Every word earns its place.

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 tool with no output schema, the description is fairly complete: it names the domain, the scope, and the intended reasoning use. It could be slightly richer by clarifying the relationship to the step-by-step checker tools, but nothing critical is missing for invoking it.

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 the schema coverage is 100%, so the description does not need to explain parameter meaning. The baseline for a no-parameter tool is 4, and no deduction is needed.

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 identifies the resource: the complete Citizenship by descent checker guide, including every question, option, and verdict. This distinguishes it from likely step-by-step siblings like checker_start and checker_answer. It lacks an explicit verb such as 'retrieve' or 'list,' so it is not a full 5.

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 phrase 'for reasoning end to end' gives clear context that this tool is intended when an agent needs the whole decision tree rather than a single step. It does not explicitly exclude alternatives or name when to use checker_start/checker_answer instead, but the intended use is reasonably clear.

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 Citizenship Descent Checker: 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.7/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 it delivers: it clarifies that no purchase, order, or payment occurs, that no quote is guaranteed, that the service is free, and that the response includes who receives details, consent wording, and confirmation method. This is strong behavioral disclosure.

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 and front-loaded with "Read first," then uses each sentence to add meaningful context: what the tool explains, what it does not do, and what the response contains. No wasted words.

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?

Given zero parameters, no output schema, and no annotations, the description fully equips an agent to understand when to call this tool and what to expect from it. It covers purpose, boundaries, and return content sufficiently.

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 the schema reflects this with empty properties, so there is nothing for the description to explain. Per the baseline for zero-parameter tools, a 4 is appropriate.

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 states a clear purpose: it "states plainly what submit_enquiry does" on Citizenship Descent Checker, acting as a read-first explainer. It distinguishes itself from the actionable sibling submit_enquiry and from checker tools by emphasizing it is informational, not a purchase or guaranteed quote.

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" is an explicit cue to use this before interacting with submit_enquiry, giving clear when-to-use context. However, it does not explicitly mention alternatives or when-not-to-use scenarios, so it stops short of a full 5.

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 Citizenship Descent Checker 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

A3.9/5.0
Behavior3/5

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

There are no annotations, so the description must carry behavioral disclosure. It implicitly frames the tool as a read-only metadata lookup with no parameters, and it directs submission activity to submit_enquiry, which avoids implying mutation. However, it never explicitly says there are no side effects or what the response container looks like, and no output schema compensates for that.

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?

Two compact, front-loaded sentences cover what the tool returns and how to consume it. There is no redundant phrasing or unnecessary context, making it easy for an agent to scan and understand.

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 simple no-parameter metadata lookup, the description supplies the essential information: the set of field attributes and the relationship to submit_enquiry via field keys. It does not specify the exact JSON shape, but the attribute enumeration is a reasonable stand-in given the absence of an output schema.

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, so the schema already exhaustively documents the input; the baseline for a no-parameter tool is 4. No parameter explanation is needed, and the description adds no irrelevant parameter detail.

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 identifies the resource—the Citizenship Descent Checker enquiry—and spells out the exact field attributes returned: key, label, type, required flag, help text, and allowed options. It is unambiguously about retrieving question metadata, though it relies on an implied verb and does not explicitly distinguish itself from the 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.

Usage Guidelines4/5

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

The second sentence gives practical workflow guidance: use the returned field keys to pass answers to submit_enquiry. This establishes when the tool is relevant and connects it to a sibling, but it does not explicitly state exclusions or when to prefer another tool instead.

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 Citizenship Descent Checker — 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 citizenship service, 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 citizenship service, who'll contact me directly.
confirmationNothe confirmation token from step 1, after the person has approved the summary

TDQS

A4.7/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 does so thoroughly. It discloses the two-step validation behavior, the confirmation-token requirement, the exact consent wording, that email notification happens, and that the provider only sees the enquiry after the person clicks the email link. This is exactly the kind of non-obvious behavior an agent needs to invoke the tool correctly.

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 dense but every sentence earns its place: the anti-purpose caveats, the two-step sequence, the consent line, and the email-link behavior are all operationally necessary. The Step 1/Step 2 structure front-loads the most important call sequence and makes the flow easy for an agent to follow.

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?

Given a two-step, multi-call workflow with no output schema, the description is remarkably complete. It explains what Step 1 returns, what Step 2 requires, what the consent condition is, and what downstream behavior the user should expect. There is no critical missing operational information for an agent to select and call the tool 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?

Schema coverage is 100%, so the baseline is 3. The description adds real value by explaining that answers are 'keyed by field key from enquiry_fields,' that the same answers must be reused in Step 2, and that the confirmation parameter comes from Step 1's response. These relationships are not visible in the schema alone.

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 clearly states the verb and resource: submitting an enquiry to Citizenship Descent Checker. It immediately distinguishes itself from a purchase and a guaranteed quote, and the two-step process uniquely separates it from the sibling checker and enquiry tools.

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 procedural guidance for when to call the tool (Step 1 first, then Step 2 only after agreement) and includes important exclusions like 'not a purchase' and 'not a guaranteed quote.' It does not directly compare against sibling tool names, but the two-step workflow and linking to enquiry_fields provide sufficient context for correct use.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation5/5

Each tool has a clearly distinct role: checker_start and checker_answer handle interactive progression, checker_tree provides the full decision map for offline reasoning, and the enquiry_* tools separate explanation, schema, and submission. Even where data overlaps, the descriptions clearly indicate which tool to use for which purpose.

Naming Consistency4/5

The checker_ and enquiry_ prefixes create a useful grouping pattern, and all names are lowercase snake_case. The only minor inconsistency is submit_enquiry using verb-first naming while the other enquiry tools use the enquiry_ prefix, but this does not create real confusion.

Tool Count5/5

Six tools is a well-scoped size for this server: three cover the decision guide interaction and three cover the enquiry flow. Each tool earns its place with no redundant or trivial additions.

Completeness5/5

The decision guide is fully covered by start, answer, and tree, allowing both step-by-step and end-to-end reasoning. The enquiry flow is also complete with explainer, field schema, and a two-step consent-based submission process, leaving no obvious dead ends.

Resources