Skip to main content
Glama

Server Details

Screen a name against OFAC's SDN and Consolidated Sanctions lists before a transaction.

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

A4.1/5.0

Scored across 2 tools

Disambiguation4/5

The two tools are functionally distinct: get_sanctionrail_info provides product/pricing details, while screen_name performs the actual sanctions lookup. However, the info tool's description also mentions fuzzy-match screening and 'check a counterparty,' which could briefly mislead an agent into thinking it performs screening. With only two tools, the risk is modest but real.

Naming Consistency4/5

Both names use lowercase verb_noun style and are readable, but they are not strongly parallel: get_sanctionrail_info is a get_<product>_info meta-tool, while screen_name is a direct verb+object action. The naming is predictable enough with only two tools, though a clearer pattern would have made the relationship between them more obvious.

Tool Count4/5

Two tools is on the low side of the typical range, but it is defensible for a narrowly scoped sanctions-screening server: one operational tool plus one informational setup tool. It does not feel bloated, and the small count is appropriate for the apparent single-purpose domain.

Completeness4/5

The server covers the primary workflow—screening a counterparty name before a transaction, onboarding, or payment approval—end to end in a single call. It lacks conveniences such as batch screening or a separate entity-detail lookup, but agents can achieve the core task with repeated screen_name calls. These are minor gaps rather than dead ends.

Available Tools

2 tools
get_sanctionrail_infoA
Read-only
Inspect

Get details and pricing for SanctionRail: fuzzy-match name screening against the US Treasury OFAC Specially Designated Nationals (SDN) list and Consolidated Sanctions List, for an agent that needs to check a counterparty before completing a transaction, onboarding a vendor, or approving a payment.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the description does not need to repeat that. The description adds value by explaining the tool provides both details and pricing, and specifies the exact regulatory lists (OFAC SDN and Consolidated Sanctions List), which is useful context beyond annotations. This is a read operation that returns information, which is consistent 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 a single sentence that is well-structured, front-loading the main action 'Get details and pricing' and then elaborating with specific use cases. It is concise but not overly brief, covering the essential information without unnecessary fluff.

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 zero-parameter, read-only tool with no output schema, the description is fairly complete. It explains what the tool does, its regulatory context, and typical use cases. However, it lacks details on what specific information is returned (e.g., pricing structure, details format), but given the simplicity and annotations, this is acceptable.

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 100%, so there is nothing to document. The description does not need to add parameter semantics since there are none. The baseline of 4 for zero parameters is appropriate, and the description is clear that it's an info retrieval tool.

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 provides details and pricing for SanctionRail, a name-screening service against specific US Treasury lists. It distinguishes from the sibling tool 'screen_name' which presumably performs the actual screening, though it doesn't explicitly name it. The purpose is specific and actionable.

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 includes use cases: before completing a transaction, onboarding a vendor, or approving a payment, which informs when to use this tool. However, it does not explicitly state when NOT to use it or mention alternatives like 'screen_name', but the context signals and sibling name provide some guidance. It could be more explicit about the distinction between this info tool and the screening tool.

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

screen_nameA
Read-only
Inspect

Screen a person or company name against OFAC's SDN and Consolidated Sanctions lists (19,874 entities, 21,320 aliases). Returns fuzzy matches banded exact/strong/probable/weak, with the sanctions programme, source list, and a common-name-collision flag so a common name like 'Maria Garcia' is surfaced, not silently suppressed. Free tier: 25 lookups/day per caller IP, no key required. Handles aliases, transliteration, and legal-form variants (JSC / S.A. / GmbH).

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesPerson or company name to screen.

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnlyHint, openWorldHint, and destructiveHint, so safety is covered. The description adds substantial behavioral context: fuzzy match bands (exact/strong/probable/weak), returned fields (sanctions programme, source list, collision flag), rate limits (25/day per IP), no key requirement, and handling of aliases/transliteration/legal-form variants. This goes well beyond annotations, disclosing edge-case behavior and operational constraints.

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 efficiently structured: purpose first, then return details, then limits, then input handling. Every sentence adds information without redundancy. It's long but dense, not wordy.

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 screening tool with one parameter and no output schema, the description fully explains what the agent needs: what it does, what it returns, operational limits, and input nuances. Nothing essential is missing for correct invocation.

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% (the 'name' param has a description). The description adds value by explaining how the name is interpreted (handles aliases, transliteration, legal-form variants), which informs the agent about input normalization. This exceeds the baseline of 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 action ('Screen') and the target resource (person/company name against OFAC SDN and Consolidated Sanctions lists). It differentiates from the sibling get_sanctionrail_info by focusing on screening rather than API info, so an agent can distinguish without opening schemas.

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 purpose implies the usage context: when you need to check a name against sanctions lists. It doesn't explicitly mention when to use the sibling or exclusion cases, but the sibling name suggests it's for API information, so the intent is clear. Slightly short of explicit alternative guidance.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updates
    • First observedget_sanctionrail_info
    • First observedscreen_name

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources