cf-exclusion-check
Server Details
Pay-per-call screening against HHS-OIG LEIE and SAM.gov exclusions.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: single-name screening, batch screening (2-200), and listing source metadata. The descriptions explicitly clarify boundaries, such as batch being for 2-200 items and sources being free metadata. No overlap that would cause misselection.
All names use snake_case with a consistent 'exclusion_' prefix, which is predictable. However, the pattern is noun-based rather than the standard verb_noun, and the modifier placement in 'exclusion_batch_check' vs 'exclusion_check' is a minor deviation.
Three tools perfectly cover the domain's core needs: screening a single item, screening a batch, and inspecting available data sources. Each tool earns its place with no redundancy, and the count is well-scoped for a focused screening service.
The surface covers single and batch screening plus source metadata, which are the primary operations. Minor gaps exist, such as a tool to force a source reseed or retrieve detailed historical exclusion records, but these are workaround-able and not core to screening.
Available Tools
3 toolsexclusion_batch_checkBatch-screen 2-200 exclusions in one callARead-onlyInspect
Screen 2-200 people/businesses against the same sources as exclusion_check in one call. Tiered price by item count: $0.30 (2-10), $1.00 (11-50), $3.00 (51-200), charged once via x402. An invalid item is reported in place, not a failure; all-invalid is refused before charging.
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With only readOnlyHint=true declared, the description carries real behavioral weight: it discloses tiered pricing with exact dollar amounts, that charging happens once via x402, that an invalid item is reported in place rather than failing the call, and that an all-invalid batch is refused before any charge. These are cost and failure-mode facts an agent cannot get 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three dense sentences with zero filler: capability first, then the decision-relevant pricing tiers, then the failure semantics. The most important routing fact (batch vs. exclusion_check) is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only batch screening tool with no output schema, the description covers cost, partial-failure behavior, and refusal semantics well. It leaves the item field semantics and any notion of the response payload or latency unaddressed, which is a minor gap given the sibling tools and annotations cover the rest.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% and the single parameter is a nested array of items whose fields (name, dob, state, npi, uei, cage) are entirely undocumented except 'ref'. The description repeats the 2-200 range that the schema already enforces via minItems/maxItems but adds nothing about what makes a valid item or how the fields are used, so it fails to compensate for the coverage gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb ('Screen'), resource ('people/businesses'), and scope ('2-200 ... in one call'), and explicitly ties itself to the sibling 'exclusion_check' whose sources it shares. An agent can immediately distinguish it from exclusion_check (single) and exclusion_sources (source listing) without opening any schema.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'in one call' plus the reference to exclusion_check implicitly routes the agent: use this when you have many items, use exclusion_check for one. However, it never states that exclusion_check is the alternative for a single item or when the batch tool should not be used, so the guidance is clear context rather than explicit when/when-not.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
exclusion_checkCheck a healthcare exclusionARead-onlyInspect
Screen a person or business against the HHS-OIG List of Excluded Individuals and Entities (LEIE) AND the SAM.gov exclusions list. Costs $0.05 per call via x402. Returns a verdict, a confidence level, the basis of each match, and the reason it matched. A match is a name match unless it was made on an identifier (npi, uei, cage); it is not an identity determination.
| Name | Required | Description | Default |
|---|---|---|---|
| dob | No | Date of birth, YYYYMMDD. | |
| npi | No | 10-digit National Provider Identifier. | |
| uei | No | SAM.gov Unique Entity Identifier, exactly 12 alphanumeric characters. An exact match is a strong identifier. | |
| cage | No | CAGE code, exactly 5 alphanumeric characters. An exact match is a strong identifier. Present on only ~0.3% of SAM records. | |
| name | No | Person or business name. "John Smith", "Smith, John" and a business name are all accepted. Wildcards are rejected. | |
| state | No | Two-letter state code. Corroborates only. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Rich beyond the readOnlyHint annotation: discloses per-call cost ($0.05 via x402), the return shape (verdict, confidence, basis, reason), and the critical limitation that a match is a name match unless made on an identifier and is not an identity determination. This is exactly the behavioral context an agent needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four tightly packed sentences, front-loaded with the core action and sources, followed by cost, return values, and the crucial match caveat. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers the two sources, per-call cost, return shape, and the name-vs-identifier matching distinction. For a read-only screening tool with a fully documented schema, nothing material is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema documents all six parameters thoroughly. The description adds meaningful value by clarifying the match-strength hierarchy (npi/uei/cage are strong identifiers vs. name matching), which informs how to weight the inputs, though it doesn't restate the individual formats.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb (Screen) and resource (person or business) against two named, concrete data sources (LEIE and SAM.gov exclusions). The scope is unmistakable and clearly distinct from the sibling batch and sources tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Implicitly positions this as the single-entity check in contrast to exclusion_batch_check, but never names the sibling or the condition (single vs. bulk) that selects it. The pricing note and the match-type disclaimer give useful framing, yet no explicit when-not-to-use guidance is offered.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
exclusion_sourcesData sources and freshnessARead-onlyInspect
List the loaded exclusion sources (OIG LEIE and SAM.gov), their row counts, load dates, load completeness and whether a bulk reseed is due. Free. Screening itself is paid: exclusion_check per name, or exclusion_batch_check for 2-200 at once ($0.30/$1.00/$3.00 by size).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only supply readOnlyHint=true, and the description adds genuine behavioral context beyond that: the operation is free, the freshness signals returned (load dates, completeness, whether a bulk reseed is due), and the exact cost tiers of the downstream paid tools. It stops short of describing output shape in detail, which a 4 reflects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three compact sentences, front-loaded with what is listed, followed by cost positioning against siblings. Every clause carries distinct information with no repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only listing tool with no output schema, the description supplies everything an agent needs: what is returned (counts, dates, completeness, reseed flag), that it is free, and which paid sibling to call for actual screening.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so per the baseline there are no parameter semantics to explain; the description does not need to and does not attempt to. Baseline 4.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb and resource ('List the loaded exclusion sources (OIG LEIE and SAM.gov)') and enumerates exactly what the listing contains: row counts, load dates, completeness, reseed status. It is clearly distinguishable from the sibling screening tools by naming them and their function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly routes the agent: this tool is free metadata, while actual screening is paid via exclusion_check (single name) or exclusion_batch_check (2-200 names, tiered pricing). When-to-use and the alternatives are both stated outright.
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.
3 tool updates
- First observed
exclusion_batch_check - First observed
exclusion_check - First observed
exclusion_sources
Related MCP Connectors
Screen people & companies against 12 US sanctions & exclusion lists (OFAC, LEIE, SAM, Medicaid).
Screen a business or person for exclusions, debarment, and sanctions (SAM.gov, OFAC).
Screen a business for federal exclusions & sanctions: OFAC SDN, HHS-OIG LEIE, SAM.gov debarment.
Screen names against OFAC SDN and 7 more global sanctions lists. Free, no account required.
Related MCP Servers
- FlicenseNot gradedqualityBmaintenanceEnables pay-per-call screening of individuals and entities against the HHS-OIG List of Excluded Individuals and Entities (LEIE), with x402 payment and an MCP interface for agents.-
- AlicenseNot gradedqualityCmaintenanceScreens individuals and entities against the OIG LEIE exclusion list, returning candidate matches that require human verification.MIT
- AlicenseNot gradedqualityCmaintenanceScreens names against the US Consolidated Screening List including OFAC SDN and BIS Entity List, keyless.2MIT
- AlicenseNot gradedqualityBmaintenanceScreen names against consolidated OFAC, EU, UK, and UN sanctions lists and resolve legal entities via GLEIF, with offline fuzzy matching.521Apache 2.0