Skip to main content
Glama

GBG Loqate - Reach

Server Details

Verify addresses, email addresses, and phone numbers with confidence scores.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
gbgplc/lqt
GitHub Stars
2

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.2/5 across 7 of 7 tools scored.

Server CoherenceA
Disambiguation4/5

Tools are largely distinct with clear purposes. Overlap exists between verify_address and verify_contact (which can verify address alone), but the descriptions explicitly clarify when to use each. list_policies and show_policy are clearly separate (list vs detail), and retrieve_address is distinct as a reference data lookup. No tools are truly ambiguous.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (list_policies, show_policy, retrieve_address, verify_address, etc.). The verbs are clear and uniformly styled, with no mixed conventions or vague names.

Tool Count5/5

Seven tools is well-scoped for a verification server. Each tool serves a distinct purpose—policy management, address resolution, and verification for address/email/phone/contact—without unnecessary redundancy or excessive count.

Completeness5/5

The toolset covers the core lifecycle of verification: policy exploration (list/show), address resolution from suggestions, and verification across all contact channels, including combined contact verification. The ability to request suggestions during verification and then resolve them to full addresses ensures a complete workflow with no dead ends.

Available Tools

7 tools
list_policiesA
Read-only
Inspect

List available decisioning policies (strict, shipping, standard, permissive) with their thresholds.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare readOnlyHint=true, so the read-only nature is established. The description adds context by specifying the policy categories and that thresholds are included, which goes slightly beyond annotations. However, it does not disclose other behavioral traits like return format, ordering, or pagination, so a mid-range score is appropriate.

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 sentence that is concise, front-loaded with the verb, and contains no superfluous information. Every word contributes meaning, making it highly efficient.

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 no parameters and simple output, the description is complete. It states the tool lists policies and includes their thresholds, which is sufficient given the readOnlyHint annotation. The absence of an output schema is not problematic because the description conveys the essential content of the result.

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, so schema coverage is trivially 100%. The description does not need to elaborate on parameter semantics; with no parameters, the baseline for this dimension is 4, and the description provides adequate clarity.

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 lists available decisioning policies and explicitly names the categories (strict, shipping, standard, permissive) and mentions thresholds. It uses a specific verb ('list') and resource ('decisioning policies'), which distinguishes it from siblings like 'show_policy' and the verification tools.

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 provides no guidance on when to use this tool versus alternatives such as 'show_policy'. It does not mention any contextual scenarios or exclusions, leaving the agent to infer the appropriate use case from the tool's name and description.

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

retrieve_addressA
Read-only
Inspect

Resolve a suggestion id from address.suggestions into its full cleansed address components (organisation, sub-building, number, street, city, province, postcode, country). Use this when you need the address itself — to fill a form or show a confirmation — rather than a decision; to verify a chosen suggestion instead, pass 'suggestion_id' to verify_address. CONSUMES A LOQATE CREDIT per call, so resolve only the one suggestion the user chose. The result is reference data, NOT a verification. Requires a Loqate API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoLoqate API key — required unless the server has one configured or the request carries an Authorization: Bearer header
suggestion_idYesId of a suggestion previously returned in address.suggestions. CONSUMES A LOQATE CREDIT. Ids are not stable over time; a stale one returns SUGGESTION_NOT_FOUND and you must search again rather than retry
Behavior4/5

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

Annotations declare readOnlyHint and openWorldHint, but the description adds critical context: the tool consumes a Loqate credit and the result is reference data, not a verification. This goes beyond annotations. However, the consumption of a credit could be seen as a side effect not captured by readOnlyHint, but it does not contradict it.

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 paragraph that is information-dense. It front-loads the purpose and includes usage guidance, behavioral notes, and parameter context. Some repetition of 'CONSUMES A LOQATE CREDIT' could be trimmed, but overall it's efficient.

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

Completeness3/5

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

The tool has no output schema, so the description should enumerate the returned address components. It mentions components like organisation, sub-building, number, street, city, province, postcode, country, but does not specify the structure or whether all are always present. This leaves some ambiguity for an agent.

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 baseline is 3. The description adds value by explaining that 'key' is optional if server-configured or if Authorization header is present, and that 'suggestion_id' may become stale requiring a new search. These details help the agent handle errors correctly.

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 resolves a suggestion id into full address components, using specific verb 'resolve' and resource 'address components'. It distinguishes from the sibling 'verify_address' by explaining the decision vs. reference data use case.

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 the tool ('when you need the address itself') and when not to ('to verify a chosen suggestion instead, pass suggestion_id to verify_address'). It also notes the cost of a Loqate credit, guiding the agent to use it sparingly.

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

show_policyA
Read-only
Inspect

Show full details for a specific decisioning policy.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesPolicy name: strict shipping standard or permissive
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, covering the safety profile. The description adds no additional behavioral context beyond "full details," which is vague. No contradiction exists.

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

Conciseness5/5

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

The entire description is one concise, front-loaded sentence with no wasted words. It effectively communicates the tool's purpose in minimal space.

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 well-described parameter and annotations, the description is largely sufficient. However, since there is no output schema, the phrase "full details" is somewhat vague about what exactly will be returned, leaving minor room for improvement.

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 has 100% coverage, with the 'name' parameter description listing the possible values ('strict shipping standard or permissive'). The tool description adds no extra parameter semantics beyond what the schema already provides.

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 action (show) and resource (specific decisioning policy), making it distinct from sibling tools like list_policies and the verification tools. The phrase "full details" adds specificity about the depth of information returned.

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 when a specific policy name is known, but it does not explicitly mention when to prefer this over list_policies or any exclusions. No alternative tool is referenced.

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

verify_addressA
Read-only
Inspect

Verify an address against Loqate's global reference data. Returns a confidence score (0-1), verification status, and a policy-driven accept/review/reject recommendation. Set 'suggest' to also get alternative addresses suggested by Loqate whenever the address does not clear the policy; offer them to the user and verify the chosen one in a second call before treating it as good. Suggestions require a separately licensed Loqate feature enabled on the account — without it, verification still succeeds and the problem is reported in suggestions.error. Requires a Loqate API key — pass it via the 'key' field (get one at account.loqate.com).

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoLoqate API key — required unless the server has one configured or the request carries an Authorization: Bearer header (get one at account.loqate.com)
policyNoPolicy name: strict shipping standard (default) or permissive
addressNoFull address string (free-form — use this OR structured fields below)
countryNoISO 2-letter country code (e.g. US GB DE)
optionsNoLoqate API options. Pass GeoCode here as a boolean — it is sent at the request root where Loqate expects it. In-Options booleans (Certify Version Enhance Deceased Goneaways) take JSON booleans; ServerOptions values (e.g. OutputCasing DefaultCountry) are strings
premiseNoPremise or house number
suggestNoWhen true, look up alternative addresses suggested by Loqate and return them in the result as suggestions. Requires the Loqate address-suggestion feature to be enabled on the account (licensed separately from verification) — without it, verification still succeeds and the reason appears in suggestions.error. The lookup runs when the address is not accepted (review or reject) OR when it is accepted below the confidence floor (see suggest_below) — a policy accepts from its own minimum, so an accepted address is not necessarily a confident one. Address-only; off by default
address2NoSecond address line
address3NoThird address line
address4NoFourth address line
address5NoFifth address line
address6NoSixth address line
address7NoSeventh address line
address8NoEighth address line
buildingNoBuilding name
latitudeNoLatitude for reverse geocode
localityNoCity or town
post_boxNoPO Box number
postcodeNoPostal or ZIP code
longitudeNoLongitude for reverse geocode
admin_areaNoState or province
verify_keyNoCustom address verification API key (overrides LOQATE_VERIFY_KEY env var)
verify_urlNoCustom address verification endpoint URL (overrides LOQATE_VERIFY_URL env var)
organizationNoOrganization or business name
sub_buildingNoSub-building (e.g. apartment, suite)
thoroughfareNoStreet name
suggest_belowNoConfidence floor for suggestions (0-1). An accepted address scoring below it still gets suggestions — policies accept from their own minimum, so an accepted address is not necessarily a confident one. Omit to use the policy value (standard 0.85); 0 disables the floor so only review/reject trigger a lookup
suggest_limitNoMaximum number of suggestions to return (1-10, default 5). Requires suggest
suggestion_idNoId of a suggestion previously returned in address.suggestions. The tool retrieves that address's cleansed components from Loqate and verifies those, which is how you confirm a suggestion the user chose. Use INSTEAD OF address, not alongside it. CONSUMES A LOQATE CREDIT — pass one id, for the one suggestion that was chosen, never several. Ids are not stable over time; a stale one returns SUGGESTION_NOT_FOUND and you must search again rather than retry
detect_countryNoWhen true and no country is supplied, guess the country from the address and flag the guess in the result (country_guessed). Address-only; off by default
delivery_addressNoFull delivery address
delivery_address1NoDelivery address line 1
delivery_address2NoDelivery address line 2
delivery_address3NoDelivery address line 3
delivery_address4NoDelivery address line 4
delivery_address5NoDelivery address line 5
delivery_address6NoDelivery address line 6
delivery_address7NoDelivery address line 7
delivery_address8NoDelivery address line 8
dependent_localityNoDependent locality (e.g. neighborhood)
sub_building_floorNoFloor number
dependent_thoroughfareNoDependent street name
sub_administrative_areaNoSub administrative area (e.g. county)
double_dependent_localityNoDouble dependent locality
super_administrative_areaNoSuper administrative area (e.g. region)
Behavior4/5

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

Annotations declare readOnlyHint=true and openWorldHint=true, and the description adds meaningful behavior: policy-driven accept/review/reject, the suggestion feature requiring a separately licensed Loqate feature, error reporting in suggestions.error, and the API key requirement. The schema further details credit consumption for suggestion_id, which is additive and does not contradict the readOnly hint. Slight deduction for not explicitly flagging cost side-effects in the main description.

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 paragraph but every sentence carries distinct information: purpose, outputs, suggest workflow, licensing, and key requirements. It is front-loaded with the main purpose and is appropriately sized for a tool of this complexity. A more structured format (bullets) would earn a 5, but it's already quite efficient.

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 tool has 45 parameters and no output schema, the description covers the core verification flow, the suggestion handling, and a key error case (suggestions.error). It summarizes return values well enough to set expectations. With 100% schema description coverage and annotations, the overall context is sufficient for an agent to select and invoke the tool correctly. No output schema means a bit more explicit return info could have helped, hence 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?

Schema description coverage is 100%, so the baseline is 3. The description reinforces semantics for key parameters ('Set suggest to also get alternative addresses', 'pass it via the key field') but doesn't add substantial meaning beyond the schema's own detailed parameter descriptions. It adds a small amount of contextual value, hence a 3.

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's purpose: 'Verify an address against Loqate's global reference data' with a specific verb and resource. It also lists key return values (confidence score, verification status, recommendation), and the name plus sibling context (verify_contact/email/phone) make its focus on addresses unambiguous.

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 provides explicit guidance for the suggest workflow: enable suggest, offer alternatives to the user, and verify the chosen one in a second call. It also explains when suggestions trigger and the licensing caveat. However, it does not explicitly contrast this tool with sibling verification tools (e.g., when to prefer retrieve_address), so it's not a 5.

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

verify_contactA
Read-only
Inspect

Verify address, email, and/or phone together. Returns individual results plus an overall recommendation (most conservative of all provided fields). Set 'suggest' to also get alternative addresses suggested by Loqate whenever the address does not clear the policy; offer them to the user and verify the chosen one in a second call before treating it as good. Suggestions require a separately licensed Loqate feature enabled on the account — without it, verification still succeeds and the problem is reported in suggestions.error. Requires a Loqate API key — pass it via the 'key' field.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoLoqate API key — required unless the server has one configured or the request carries an Authorization: Bearer header
emailNoEmail address to verify
phoneNoPhone number to verify
policyNoPolicy name: strict shipping standard (default) or permissive
addressNoFull address string
countryNoISO 2-letter country code
optionsNoLoqate API options. Pass GeoCode here as a boolean — it is sent at the request root where Loqate expects it. In-Options booleans (Certify Version Enhance Deceased Goneaways) take JSON booleans; ServerOptions values (e.g. OutputCasing DefaultCountry) are strings
premiseNoPremise or house number
suggestNoWhen true, look up alternative addresses suggested by Loqate and return them under address.suggestions. Requires the Loqate address-suggestion feature to be enabled on the account (licensed separately from verification). The lookup runs when the address is not accepted (review or reject) OR when it is accepted below the confidence floor (see suggest_below). Address-only — does not affect phone or email; off by default
address2NoSecond address line
address3NoThird address line
address4NoFourth address line
address5NoFifth address line
address6NoSixth address line
address7NoSeventh address line
address8NoEighth address line
buildingNoBuilding name
latitudeNoLatitude for reverse geocode
localityNoCity or town
post_boxNoPO Box number
postcodeNoPostal or ZIP code
longitudeNoLongitude for reverse geocode
admin_areaNoState or province
verify_keyNoCustom address verification API key (overrides LOQATE_VERIFY_KEY env var)
verify_urlNoCustom address verification endpoint URL (overrides LOQATE_VERIFY_URL env var)
organizationNoOrganization or business name
sub_buildingNoSub-building (e.g. apartment, suite)
thoroughfareNoStreet name
suggest_belowNoConfidence floor for suggestions (0-1). An accepted address scoring below it still gets suggestions. Omit to use the policy value (standard 0.85); 0 disables the floor. Address-only
suggest_limitNoMaximum number of suggestions to return (1-10, default 5). Requires suggest
suggestion_idNoId of a suggestion previously returned in address.suggestions. The tool retrieves that address's cleansed components from Loqate and verifies those, which is how you confirm a suggestion the user chose. Use INSTEAD OF address, not alongside it. CONSUMES A LOQATE CREDIT — pass one id, for the one suggestion that was chosen, never several. Ids are not stable over time; a stale one returns SUGGESTION_NOT_FOUND and you must search again rather than retry
detect_countryNoWhen true and no country is supplied, guess the country from the address and flag the guess in the result (country_guessed). Address-only — does not affect phone or email; off by default
delivery_addressNoFull delivery address
delivery_address1NoDelivery address line 1
delivery_address2NoDelivery address line 2
delivery_address3NoDelivery address line 3
delivery_address4NoDelivery address line 4
delivery_address5NoDelivery address line 5
delivery_address6NoDelivery address line 6
delivery_address7NoDelivery address line 7
delivery_address8NoDelivery address line 8
dependent_localityNoDependent locality (e.g. neighborhood)
sub_building_floorNoFloor number
dependent_thoroughfareNoDependent street name
sub_administrative_areaNoSub administrative area (e.g. county)
double_dependent_localityNoDouble dependent locality
super_administrative_areaNoSuper administrative area
Behavior5/5

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

Annotations already declare readOnlyHint and openWorldHint, and the description reinforces the safe-read nature while adding substantial behavioral detail: Loqate licensing, API key requirements, credit consumption for suggestion_id, stale-id error behavior, and the suggestions.error reporting. No contradiction with 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 dense but not bloated; it front-loads the purpose and packs the rest into a coherent paragraph. Could be improved with bullets, but every sentence carries operational value given the tool's complexity.

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 47 parameters and no output schema, the description covers the key operational concerns: result shape (individual + overall recommendation), suggestion flow, licensing, key handling, and stale-id behavior. It does not enumerate the return fields, but the no-output-schema context lowers the burden, and the coverage is adequate.

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 covers 100% of parameters, so the baseline is 3; the description adds real operational semantics on top—e.g., suggestion_id must be used instead of address, consumes a credit, stale ids return SUGGESTION_NOT_FOUND, and options booleans are typed differently at the root. This meaningfully augments the schema.

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 opens with 'Verify address, email, and/or phone together'—a clear verb and resource scope that immediately distinguishes it from the single-channel sibling tools (verify_address, verify_email, verify_phone). It also states the combined result and recommendation behavior.

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?

It explains when to use the tool: to verify multiple fields together, and it details the suggestion workflow (call, offer, second verification call). It does not explicitly name sibling alternatives or say 'use this instead of verify_address,' but the 'together' framing plus the workflow guidance implies the appropriate context.

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

verify_emailA
Read-only
Inspect

Verify an email address via Loqate. Returns confidence, risk level, and accept/review/reject recommendation. Requires a Loqate API key — pass it via the 'key' field.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoLoqate API key — required unless the server has one configured or the request carries an Authorization: Bearer header
emailYesEmail address to verify
policyNoPolicy name: strict shipping standard (default) or permissive
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, but the description adds valuable context: it returns specific data (confidence, risk, recommendation) and requires a Loqate API key passed via the 'key' field. This goes beyond the structured annotations without contradicting them.

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 primary action and return values, and contains no wasted words. Every element 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?

The tool has no output schema, but the description clearly lists the return categories (confidence, risk, recommendation). The key requirement and external service are noted. It does not explain the 'policy' parameter but the schema covers it. Overall, it is adequately complete for a simple verification 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 description coverage is 100%, so the schema already documents all three parameters. The description's mention of the 'key' field merely repeats the schema; it adds no additional semantic value beyond what is already provided.

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 ('Verify') with a clear resource ('email address via Loqate') and explicitly states the output (confidence, risk level, accept/review/reject recommendation). This distinguishes it from sibling verification tools targeting other resource types.

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 email verification but provides no explicit guidance on when to choose this over sibling tools like verify_contact or verify_phone. It mentions the API key requirement but not exclusions or alternative scenarios.

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

verify_phoneA
Read-only
Inspect

Verify a phone number via Loqate. Returns confidence, number type, carrier, and accept/review/reject recommendation. Requires a Loqate API key — pass it via the 'key' field.

ParametersJSON Schema
NameRequiredDescriptionDefault
keyNoLoqate API key — required unless the server has one configured or the request carries an Authorization: Bearer header
phoneYesPhone number (E.164 format preferred e.g. +442071234567)
policyNoPolicy name: strict shipping standard (default) or permissive
countryNoISO 2-letter country code (helps with parsing if no country prefix)
Behavior5/5

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

The description reveals that the tool calls the external Loqate service, requires an API key, and returns specific data fields (confidence, number type, carrier, recommendation). This adds valuable context beyond the readOnlyHint and openWorldHint annotations, covering auth needs and external dependency. No contradictions with 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 two sentences long, with the core purpose and output in the first sentence and the key requirement in the second. It is front-loaded, direct, and contains no superfluous information.

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 complete parameter schema, present annotations, and absence of an output schema, the description adequately covers the essential context: purpose, return values, and the API key prerequisite. It could be more complete by mentioning potential error cases or policy defaults, but those are already in the schema. Overall, it provides sufficient information for correct invocation.

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 each parameter already has a clear description. The tool description only mentions the 'key' field explicitly, which is already documented in the schema. It does not add additional meaning or clarify parameter usage beyond what the schema provides, so a baseline score of 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 clearly states the tool's action and scope: 'Verify a phone number via Loqate.' This distinguishes it from sibling verification tools (verify_address, verify_email, etc.) by specifying the resource type. It also summarizes the key output components, leaving no ambiguity about purpose.

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 provides clear context for when to use the tool: whenever phone number verification is needed. It does not explicitly name alternatives or exclusions, but the resource-specific language ('Verify a phone number') inherently guides selection. The API key requirement is also stated, which is a practical usage prerequisite.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    B
    maintenance
    Enables AI agents to verify email addresses through a multi-signal probabilistic pipeline, returning confidence scores and honest statuses (safe/risky/invalid/unknown) with evidence.
    Apache 2.0
  • A
    license
    -
    quality
    C
    maintenance
    UK address (Royal Mail PAF), email, and phone (live HLR carrier) validation via the Postio API. Six tools: address search, postcode lookup, UDPRN, email validate, phone validate, and a health probe.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.