Skip to main content
Glama

Server Details

Price all 579 VHIS certified plans in Hong Kong, read filed terms, see premium increases since 2021

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 · MCP 2025-11-25
URL

TDQS

A3.9/5.0

Scored across 13 tools

Disambiguation3/5

Several tools address adjacent questions: plan_terms, plan_coverage, and search_plan_terms all answer 'what does the plan cover/rule', while find_plans, price_plans, and compare_plans all rank or compare plans. The descriptions do clarify the intended use, but an agent could still misselect between the term/coverage tools without careful reading.

Naming Consistency3/5

All names are snake_case and readable, but the pattern is mixed: compare_plans, create_lead, find_plans, and price_plans use verb_noun, while plan_coverage, plan_terms, premium_history, and insurer_increases are noun-led. It is not chaotic, but there is no single consistent convention across the 13 tools.

Tool Count5/5

13 tools is squarely in the well-scoped range for a VHIS-focused server. The surface covers plan search, pricing, comparison, terms/coverage lookup, insurer records, renewal estimates, and lead creation without feeling padded or thin.

Completeness5/5

For an informational/quote-oriented VHIS server, the lifecycle is complete: discover plans, compare and price them, inspect coverage/terms, estimate renewals, review insurer rate history, and pass a lead to an adviser. There are no obvious dead ends for the domain.

Available Tools

13 tools
adviser_notesAdviser and scheme notesA
Read-only
Inspect

Curated notes from licensed advisers and the scheme rules: how underwriting works, what usually happens with common conditions, switching, claims practice, tax. Guidance, not plan terms.

ParametersJSON Schema
NameRequiredDescriptionDefault
brandNo
topicNo
questionNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds valuable context by noting the content is curated from advisers and scheme rules and is guidance rather than authoritative plan terms. This helps the agent understand the nature and reliability of the information without contradicting the annotations.

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 sentence with no filler, front-loading the core resource ('Curated notes from licensed advisers and the scheme rules') before listing examples. It could be slightly more structured, but it is appropriately concise and each word adds meaning.

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 is simple with three optional parameters and an output schema, so the description does not need to explain return values. However, it lacks explicit guidance on how to combine parameters or when to use this tool over siblings like plan_terms. The negative statement about plan terms helps, but the context is still somewhat thin for an agent facing many sibling tools.

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

Parameters2/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 for parameter meaning. It provides some topic examples (underwriting, claims, tax) that relate to the 'topic' parameter, but does not explain the 'brand' or 'question' parameters at all. It also doesn't mention that the topic parameter is constrained by a regex pattern. The description only partially clarifies the parameter semantics, leaving significant gaps.

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 tool provides curated adviser notes and scheme rules, covering specific domains like underwriting, claims, and tax. It explicitly contrasts itself with plan terms ('Guidance, not plan terms'), which distinguishes it from siblings such as plan_terms and search_plan_terms. An agent can easily understand what this 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.

Usage Guidelines3/5

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

The description implies usage contexts by listing topics (underwriting, claims, switching, tax) and states it is 'guidance, not plan terms,' which hints at when not to use it. However, it never explicitly names alternative tools or provides clear when-to-use versus when-not-to-use guidance. The agent must infer selection criteria from the topic list and the negative statement.

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

compare_plansCompare two or three plansA
Read-only
Inspect

Side by side on what actually differs: premium now and at 65, next-year range, deductible, room class, limits, area and each insurer's rate record. Use it for "which is better" and "why is one cheaper"; state the trade-off and let the person choose. Needs a key on the public server; without one it returns key_required and tells the user where to get one.

ParametersJSON Schema
NameRequiredDescriptionDefault
ageYesAge last birthday, as the premium schedules state it
genderNoM or F, as the schedules rate itF
smokerNoTrue only if the person said they smoke; a few plans rate for it
option_idsYesOption ids from an earlier result

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true, so the description doesn't need to restate safety. It adds valuable behavioral context: the tool requires a key on the public server and returns key_required with user guidance if absent. It also implies the output is a side-by-side comparison of differences, which is useful. It doesn't detail output structure, but an output schema exists, so that's acceptable. Minor gap: no mention of how it handles invalid option_ids, but that's not a major omission.

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?

Three sentences, each earning its place: the first defines scope, the second defines when to use it, the third discloses a critical prerequisite and failure mode. Information is front-loaded with the core purpose before the usage note. No fluff or repetition of schema details.

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 read-only comparison tool with a full input schema and an output schema, the description covers the essential context: what is compared, when to use it, and the key requirement. The only notable omission is not naming a specific sibling alternative (e.g., price_plans) for when the user just wants prices, but the use-case framing is strong enough that an agent can infer the boundary. The key_required behavior is a nice completeness touch.

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 100%, so the schema already documents all four parameters. The description adds context for option_ids ('from an earlier result') and age ('as the premium schedules state it') indirectly, but mostly it reinforces what the schema says. Baseline 3 is appropriate because the schema carries the heavy lifting and the description doesn't add significant new parameter-level meaning.

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 specific verb ('compare') and resource ('plans'), and immediately clarifies what the comparison covers: 'premium now and at 65, next-year range, deductible, room class, limits, area and each insurer's rate record.' It also distinguishes itself from siblings by focusing on 'what actually differs' and the trade-off question, which is a clear differentiator from tools like find_plans or price_plans.

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

Usage Guidelines5/5

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

The description explicitly says when to use it: for 'which is better' and 'why is one cheaper' questions, and instructs the agent to 'state the trade-off and let the person choose.' It also names a prerequisite (a key on the public server) and the failure mode without it, which is strong usage guidance. It doesn't name a specific alternative tool, but the use-case framing is clear enough to route correctly among siblings.

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

create_leadHand over to a licensed adviserAInspect

Pass the person to a licensed adviser: saves the enquiry, emails them their shortlist, emails the adviser and returns a WhatsApp link and a reference. Only call it once they have given a name and a phone number or email and have said they want to be contacted. Never put a health detail in the note; the adviser asks directly. Needs a key on the public server; without one it returns key_required and tells the user where to get one.

ParametersJSON Schema
NameRequiredDescriptionDefault
ageNo
nameYes
noteNoWhat they asked for. Never any health detail.
emailNo
phoneNo
genderNo
option_idNoThe plan they want to talk about
preferred_contactNo

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already indicate this is a write operation (readOnlyHint=false, idempotentHint=false), and the description adds meaningful behavioral context: it emails multiple parties, returns a WhatsApp link and reference, and fails with key_required if no key is present. It does not contradict annotations. It could go further by describing whether the operation is reversible or what happens on duplicate calls, but the disclosed side effects are substantial.

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?

Three sentences, each carrying distinct information: what the tool does, when to call it, and what to avoid plus the key failure mode. The most important operational constraints are front-loaded. No filler or repetition of schema fields.

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 tool with 8 parameters and an output schema, the description covers the essential workflow: prerequisites, side effects, the health-detail prohibition, and the key requirement. It doesn't spell out the exact return structure, but an output schema exists, so that burden is reduced. The only notable gap is that it doesn't explicitly say what happens if the person hasn't given consent, though that is strongly implied by 'only call it once they have said they want to be contacted'.

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 description coverage is only 25%, so the description must compensate. It does: it clarifies that name and a phone/email are prerequisites, that the note must never contain health details, and that option_id is 'the plan they want to talk about'. It doesn't explain every parameter (e.g., age, gender, preferred_contact), but the most safety-critical and workflow-critical parameters are covered.

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 ('pass the person to a licensed adviser') and names the concrete side effects: saves the enquiry, emails the shortlist, emails the adviser, returns a WhatsApp link and a reference. It clearly distinguishes this from sibling tools like find_plans or compare_plans, which are about plan discovery rather than handing off a lead.

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

Usage Guidelines5/5

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

The description gives explicit preconditions: only call once the person has given a name and a phone number or email and has said they want to be contacted. It also states a hard exclusion ('Never put a health detail in the note') and explains the key requirement. This is strong when-to-use guidance that an agent can act on without ambiguity.

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

estimate_renewalWhat a plan may cost at renewalA
Read-only
Inspect

The premium at age plus one on the current schedule, which is certain unless the insurer refiles, plus a low, mid and high range built from this plan's own rate changes since 2021. Needs a key on the public server; without one it returns key_required and tells the user where to get one.

ParametersJSON Schema
NameRequiredDescriptionDefault
ageYesAge last birthday, as the premium schedules state it
genderNoM or F, as the schedules rate itF
smokerNoTrue only if the person said they smoke; a few plans rate for it
option_idYesOption id from an earlier result

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

Annotations declare readOnlyHint=true and openWorldHint=false, so the description doesn't need to restate safety. It adds valuable behavioral context: the estimate is 'certain unless the insurer refiles', the range is built from the plan's own rate changes since 2021, and the key_required error behavior is disclosed. This goes beyond the annotations and helps the agent anticipate failure modes.

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 two sentences with no wasted words. It front-loads the core computation, then the certainty condition, then the range methodology, then the key requirement. Every sentence 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?

Given the output schema exists and annotations cover safety, the description is nearly complete. It explains the key requirement and the range construction. It could mention what the low/mid/high range represents more explicitly, but the output schema likely covers that. The description is sufficient for an agent to call the tool correctly.

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 100%, so the schema already documents all four parameters. The description adds context about 'age plus one' and 'current schedule', which clarifies the age parameter's role, but doesn't add much beyond the schema. Baseline 3 is appropriate because the schema carries the heavy lifting.

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 specific verb ('estimate') and resource ('renewal premium at age plus one on the current schedule'), and clearly distinguishes it from siblings like price_plans and premium_history by explaining what it computes and its certainty condition. It also names the sibling insurer_increases implicitly by referencing the plan's own rate changes since 2021, which helps an agent differentiate.

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 explains when to use this tool: to estimate renewal cost at age plus one, and notes the key requirement on the public server. It doesn't explicitly say when not to use it or name alternatives, but the context signals and sibling list imply it's for renewal estimation rather than current pricing or historical premium data. The key requirement is a clear usage condition.

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

find_plansFind plans on coverage and priceA
Read-only
Inspect

The plan finder. Ranks every eligible VHIS plan on what it covers and what it really costs, and returns three explained picks (lowest cost over the period, best coverage for the money, most comprehensive) with a ranked list behind them. Coverage is read from each plan's Benefit Schedule; cost is the published premium for every year from this age, and the same again with the insurer's own filed rate changes applied. Age is the only thing it needs; pass whatever else the person has actually said.

ParametersJSON Schema
NameRequiredDescriptionDefault
ageYesAge last birthday, as the premium schedules state it
roomNoMinimum hospital room class wanted: Ward | Semi-private | Private
limitNo
needsNoMust-haves they named, any of: full_cover, no_annual_limit, mental_health, cancer, outpatient_general, dental, maternity, chinese_medicine, health_check, emergency_assistance, cash_benefit, second_opinion, home_nursing, deductible_waiver
yearsNoPeriod the cost is totalled over
genderNoM or F, as the schedules rate itF
smokerNoTrue only if the person said they smoke; a few plans rate for it
currencyNoHKD
insurersNoRestrict to these brands, e.g. ["Bupa","AXA"]
priorityNoWhat matters most to thembalanced
territoryNoWhere cover is needed: hong_kong | greater_china | asia | worldwide_ex_us | worldwide
budget_annualNoMost they want to pay in the first year, in the plan currency
max_deductibleNo0 for no deductible; leave empty to allow deductible plans, which cost less

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.7/5.0
Behavior4/5

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

The description goes beyond the readOnlyHint annotation by explaining how rankings are computed: coverage from Benefit Schedule and cost from published premiums with filed rate changes. It also discloses that age is the only required input, adding meaningful behavioral context beyond the annotations.

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 two sentences, front-loaded with the core purpose, then explains data sources and the age requirement. It is efficient with no filler, though it could be slightly tighter. Scores a 4.

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 tool with 13 parameters and an output schema, the description covers the key behavior (ranking and return structure) and the data sources, while leaving parameter details to the schema. This is sufficient for an agent to call it correctly, so it scores a 4.

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?

The input schema already provides descriptions for 85% of parameters, so the baseline is 3. The description adds only a general usage hint ('pass whatever else the person has actually said') rather than specific parameter meaning, so it does not significantly enhance parameter understanding.

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 the tool ranks all eligible VHIS plans and returns three explained picks with a ranked list, using a specific verb and resource. However, it does not explicitly differentiate from sibling tools like compare_plans or price_plans, so it earns a 4 rather than a 5.

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 provides guidance on what to pass ('Age is the only thing it needs; pass whatever else the person has actually said'), but it does not state when to use this tool versus alternatives like compare_plans or price_plans. There is no explicit exclusion or alternative routing, so it scores a 3.

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

insurer_increasesInsurer and market rate changesB
Read-only
Inspect

An insurer's rate record across all its VHIS plans since 2021, by year, alongside the market table with every insurer ranked from lowest average annual change to highest.

ParametersJSON Schema
NameRequiredDescriptionDefault
brandNoBrand name, e.g. Bupa, AIA, AXA; omit for the market table

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.2/5.0
Behavior3/5

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

The readOnlyHint annotation already establishes that this is a safe read operation. The description adds useful context about the time range (since 2021), the yearly grouping, and the market-table ranking order, but it does not disclose anything about failure modes, pagination, or data freshness. This is acceptable for a read-only tool but does not go beyond what annotations already cover.

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 dense sentence with no filler or repetition. It packs several important details—time range, yearly granularity, insurer scope, and ranking order—into a compact form. It is not as crisp as a short imperative, but it is efficiently written.

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 read-only tool with one optional parameter and an output schema, the description provides enough information to understand what data will be returned: the insurer's year-by-year record and the ranked market table. The main missing piece is when to use this tool versus related siblings, but that gap is better captured under usage guidelines.

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?

The input schema fully documents the only parameter, brand, with examples and the omit-for-market-table behavior, so schema coverage is 100%. The tool description adds no meaningful parameter detail beyond what the schema already provides, so the baseline of 3 applies.

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: an insurer's yearly rate record across VHIS plans since 2021, plus a ranked market table. It is specific enough to distinguish the general subject matter, though it lacks an explicit verb such as 'returns' or 'lists' and does not directly contrast against close siblings like premium_history.

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

Usage Guidelines2/5

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

The description offers no explicit guidance about when to choose this tool over related alternatives. The only usage hint, 'omit for the market table,' appears in the parameter schema rather than the tool description. An agent must infer when this tool is the right choice compared to premium_history or other rate-related tools.

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

list_insurersInsurers on this instanceA
Read-only
Inspect

Every insurer this server can price, with how many certified plans and rate tables each has loaded.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the description doesn't need to repeat safety. It adds useful behavioral context by stating the list is exhaustive ('Every insurer this server can price') and describing the output composition (plan/rate-table counts), though it omits pagination or limit behavior.

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 17-word sentence that front-loads the scope ('Every insurer') and immediately states the key output details. No filler or redundancy.

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?

With zero parameters, no required arguments, an output schema present, and read-only annotations, the description provides everything an agent needs to invoke this tool correctly. Nothing important 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?

The tool has zero parameters and schema coverage is effectively 100% (empty object). With no parameters to explain, the description adds no parameter semantics, and the baseline of 4 applies.

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?

States a specific verb+resource ('list insurers') and scopes it precisely to 'Every insurer this server can price'. It also specifies the returned information (counts of certified plans and rate tables), distinguishing it from sibling tools like insurer_increases or find_plans.

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 usage for discovering all available insurers, but it does not explicitly state when to use this tool versus alternatives such as find_plans or compare_plans. No when-not-to-use or alternative guidance is provided.

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

plan_coverageWhat one plan coversA
Read-only
Inspect

What one plan actually pays, item by item from its own Benefit Schedule: full cover or the published cap on room and board, hospital charges, surgeon's fee, imaging, cancer treatment and psychiatric care, plus the annual and lifetime limits, room class, territory, extras and a coverage score. Use it for "what does this cover", "is surgery covered in full", "does it include outpatient".

ParametersJSON Schema
NameRequiredDescriptionDefault
certYesVHIS certification number from an earlier result, e.g. F00070 or F00070-06-000-02

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true, so no safety contradiction exists. The description adds significant behavioral detail beyond the annotation by listing the exact benefit items and limits the tool reports, as well as that it operates from the plan's own Benefit Schedule. This goes beyond the minimum and clarifies the tool's output scope, though it does not discuss rate limits, errors, or other less-visible behavior.

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 dense but purposeful, front-loading the core purpose ('What one plan actually pays, item by item') before enumerating specifics. The two sentences each carry information—the first defines scope and contents, the second gives usage examples. It could be slightly tighter, but it earns a high score for efficiency.

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?

With a single well-documented parameter, readOnlyHint annotations, an output schema present, and explicit usage guidance, the description is complete for an agent to invoke the tool correctly. Nothing necessary for selection or calling is missing.

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 100%; the only parameter (cert) is clearly described as a VHIS certification number from an earlier result with an example format. The description adds no further meaning to cert, so the baseline 3 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 specific verb+resource: it reports what one plan actually pays, item by item from its Benefit Schedule, and enumerates covered categories (room/board, hospital, surgeon, imaging, cancer, psychiatric, limits, territory, extras). It also includes explicit example queries ('is surgery covered in full'), making the tool's purpose unmistakable and clearly distinct from siblings like compare_plans or find_plans.

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 clear usage contexts: 'Use it for "what does this cover", "is surgery covered in full", "does it include outpatient".' This tells an agent when to invoke the tool. It does not explicitly name alternatives or say when not to use it, so it earns 4 rather than 5.

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

plan_optionsAll options under one planA
Read-only
Inspect

Every option sold under one certification number, with its room class, deductible and area, priced at this age when an age is given, plus what the premium becomes every five years to twenty years out.

ParametersJSON Schema
NameRequiredDescriptionDefault
ageNo
certYesVHIS certification number from an earlier result, e.g. F00070 or F00070-06-000-02
genderNoM or F, as the schedules rate itF
smokerNoTrue only if the person said they smoke; a few plans rate for it

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.5/5.0
Behavior4/5

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

Annotations already declare the operation read-only, and the description adds useful behavior: it returns every option under one cert and shows pricing at the supplied age plus premium projections in five-year steps to twenty years. This goes beyond the annotations and schema, though it doesn't address ordering, filtering, or error conditions.

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 compact sentence that front-loads the key scope ('Every option sold under one certification number') and then packs the useful details. It is slightly dense and grammatically awkward, but no word is wasted.

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?

Given the readOnlyHint, the optional age parameter, and a rich output schema, the description says enough about what the caller gets and the projection cadence. It does not discuss edge cases such as missing age or null cert, but those are relatively minor for this tool.

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 descriptions already cover cert, gender, and smoker well (75% coverage). The description adds meaning mainly for age, clarifying that it controls the displayed current price and the projection horizon. That is helpful but not comprehensive, so it doesn't clearly rise above the baseline.

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 a specific resource (one certification number) and the output content (all options with room class, deductible, area, current and projected premiums), so an agent can tell it returns a comprehensive option list for a single plan. It lacks an explicit verb and does not call out sibling tools, so it falls short of a 5.

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

Usage Guidelines2/5

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

There is no guidance about when to choose plan_options over related tools such as price_plans, compare_plans, or plan_coverage, and no exclusions or prerequisites are stated. The only conditional clause ('when an age is given') describes parameter behavior, not usage context.

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

plan_termsWhat one plan document statesA
Read-only
Inspect

The plan's terms as filed with the Health Bureau, field by field with the page each came from: guaranteed renewal age, entry ages, pre-existing condition schedule, waiting period, room class and higher-room rule, territory, full cover, limits, deductible basis, coinsurance, outpatient, psychiatric, cancer, extras, cancellation, switching and exclusions beyond the standard list. Use it for "does it cover X", "what is the rule on Y" and terms comparisons; cite the page.

ParametersJSON Schema
NameRequiredDescriptionDefault
certYesVHIS certification number from an earlier result, e.g. F00070 or F00070-06-000-02

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true and openWorldHint=false, so the description need not repeat safety. It adds valuable context by specifying the source ('as filed with the Health Bureau') and the output format ('with the page each came from'), and instructs users to cite the page. This enriches the behavioral profile beyond the annotations.

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 long but every element earns its place: it states the core function, lists the specific fields returned (demonstrating scope), provides clear usage scenarios, and includes the 'cite the page' instruction. It is front-loaded with the main purpose and flows logically from what to how to when. No fluff or redundancy.

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?

The description is complete for a read-only, single-parameter query tool. It covers what is returned (fields with page citations), when to use it (coverage questions, rule lookups, comparisons), and the input requirement (cert from an earlier result). The presence of an output schema means the description need not detail return types. 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% and the cert parameter is fully described as a VHIS certification number with examples. The description adds that it comes 'from an earlier result,' which is useful for an agent to understand the provenance. This goes beyond the schema's basic type/format description, so 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 explicitly states the tool retrieves a plan's terms as filed with the Health Bureau, field by field with page citations, and enumerates the specific fields covered. It clearly distinguishes itself from siblings by stating it is for single-plan term lookups and comparisons, contrasting with tools like search_plan_terms which imply cross-plan search.

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 usage guidance: 'Use it for "does it cover X", "what is the rule on Y" and terms comparisons; cite the page.' This clearly indicates when to use it. However, it does not explicitly mention alternatives or when not to use it, such as when a broader search across plans is needed, which would route to search_plan_terms.

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

premium_historyA plan's premium recordA
Read-only
Inspect

How a plan's premium has moved since 2021: every schedule the insurer filed, the premium at this age under each one with the age held constant, the year-on-year changes and the average. Use it for "has this gone up" and "is this insurer stable".

ParametersJSON Schema
NameRequiredDescriptionDefault
ageNo
certYesVHIS certification number from an earlier result, e.g. F00070 or F00070-06-000-02
genderNoM or F, as the schedules rate itF
smokerNoTrue only if the person said they smoke; a few plans rate for it

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.6/5.0
Behavior4/5

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

Annotations provide readOnlyHint=true and openWorldHint=false, so the description doesn't need to restate safety. It adds value by specifying the data scope (since 2021, age held constant, year-on-year changes) and the analytical purpose, which helps the agent set expectations for the response.

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 concise (two sentences), front-loads the key data points, and includes practical use cases. Every sentence adds value without redundancy.

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?

Given the annotations (read-only) and rich output schema (likely containing detailed premium history), the description covers the core purpose and usage. It could mention that results are read-only, but annotations handle that, so it's complete enough 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?

Schema coverage is 75%, with cert, gender, and smoker having descriptions. The description adds context for 'age' (but not explicitly) and explains the analytical output. It doesn't detail parameter interactions, but given the high schema coverage, it provides sufficient supplemental meaning.

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 tool shows a plan's premium history since 2021, including schedule filings, age-constant premium, year-on-year changes, and average. It distinguishes itself from related tools like 'insurer_increases' by focusing on a specific plan's premium movement, not insurer-wide increases.

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

Usage Guidelines5/5

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

The description explicitly states when to use it: for questions like 'has this gone up' and 'is this insurer stable'. It implies it is for premium trend analysis, differentiating it from sibling tools like 'estimate_renewal' (future projections) and 'insurer_increases' (insurer-level trends).

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

price_plansPrice plansA
Read-only
Inspect

Every matching plan ranked by annual premium alone, with no view on coverage. Use it when someone asks for the cheapest, for a full list, or for one insurer's prices. When what the plan covers matters, use find_plans. Needs a key on the public server; without one it returns key_required and tells the user where to get one.

ParametersJSON Schema
NameRequiredDescriptionDefault
ageYesAge last birthday, as the premium schedules state it
roomNoWard | Semi-private | Private
limitNo
genderNoM or F, as the schedules rate itF
smokerNoTrue only if the person said they smoke; a few plans rate for it
insurersNoBrand names to restrict to
plan_typeNo
max_deductibleNoHighest deductible acceptable; 0 for none
one_per_productNoCheapest matching option per product rather than every option

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.7/5.0
Behavior5/5

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

Beyond the readOnlyHint=true annotation, the description discloses an authentication requirement, the specific error returned without a key, and the fact that the tool provides no view on coverage. These are meaningful behavioral facts not visible from annotations or schema.

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?

Four short sentences, each earning its place: core behavior, use cases, alternative routing, and auth/error behavior. The most important discriminator is front-loaded, and there is no filler.

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 tool with 9 parameters, an output schema, and many siblings, the description covers purpose, selection criteria, key alternative, and a critical failure mode. The output schema handles return values, and the annotations cover safety. Nothing essential is missing.

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 78%, and the schema already documents most parameters (age, room, gender, smoker, insurers, max_deductible, one_per_product). The description adds no parameter-level detail; it mainly clarifies the ranking behavior, which is output semantics rather than input meaning.

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 the tool ranks matching plans by annual premium only, explicitly excluding coverage considerations. It also names the sibling alternative find_plans, making the distinction crisp without requiring schema inspection.

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

Usage Guidelines5/5

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

It gives explicit when-to-use guidance: 'cheapest', 'full list', or 'one insurer's prices'. It also gives an exclusion: when coverage matters, use find_plans. This is as clear as usage guidance can get.

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

search_plan_termsSearch the plan wordingA
Read-only
Inspect

Search the official Terms and Benefits of the certified plans and return the clauses, each with the plan, Part, Section, page and a link to that page. Use it for exclusions, waiting periods, limits, room class rules, territorial scope, definitions, renewal and cancellation. Never state what a plan says without it.

ParametersJSON Schema
NameRequiredDescriptionDefault
certNoScope to one plan when the person is looking at it
brandNoScope to one insurer
limitNo
questionYesPlain words, e.g. "psychiatric treatment limit", "pre-existing conditions", "treatment in mainland China"

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already mark it read-only. The description adds that it only searches 'certified plans' and returns structured clause details with location metadata, which is useful behavioral context. It does not disclose rate limits or error behavior, but given readOnlyHint, the bar is lower.

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 two sentences, front-loaded with the core action, then a list of use cases and a strict rule. No wasted words.

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?

With an output schema present, the description need not detail return values. It covers the tool's purpose, scope (certified plans), output structure, and use cases, which is sufficient for a search tool. It doesn't mention pagination but the limit parameter handles that.

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 descriptions cover 75% of parameters, including examples for 'question' and scoping explanations for 'cert' and 'brand'. The description does not add parameter details beyond the schema, so it relies on the schema to explain the arguments.

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 specific verb ('Search'), resource ('official Terms and Benefits of the certified plans'), and output ('clauses, each with the plan, Part, Section, page and a link to that page'). It also lists specific use cases (exclusions, waiting periods, limits) that differentiate it from sibling tools like plan_coverage or find_plans.

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

Usage Guidelines5/5

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

It explicitly says 'Use it for' followed by a list of plan-related topics, and instructs 'Never state what a plan says without it', making it clear when this tool must be used. It does not name alternatives, but the directive is unambiguous.

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.

  1. 13 tool updates
    • First observedadviser_notes
    • First observedcompare_plans
    • First observedcreate_lead
    • First observedestimate_renewal
    • First observedfind_plans
    • First observedinsurer_increases
    • First observedlist_insurers
    • First observedplan_coverage
    • First observedplan_options
    • First observedplan_terms
    • First observedpremium_history
    • First observedprice_plans
    • First observedsearch_plan_terms

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    Provides AI assistants access to 1.6 million Swiss health insurance premium records from 55 insurers across 11 years (2016-2026), enabling price comparisons, historical analysis, and finding the cheapest insurance options based on location, age, and coverage preferences.
    4
    18 npm
    1
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to search, compare, recommend, quote, and pre-underwrite Chinese insurance products via MCP, covering 158 insurers and 489 products.
    1
    -
  • A
    license
    B
    quality
    A
    maintenance
    US/HK markets — 110 tools: real-time quotes, options, orders, fundamentals, alerts, DCA & portfolio
    164
    14
    Apache 2.0
  • F
    license
    B
    quality
    D
    maintenance
    This MCP server provides tools to calculate and compare insurance premiums across term, health, and vehicle policies based on age and coverage. It allows users to refine health insurance estimates by factoring in smoking status and pre-existing conditions.
    3
    -
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources