{
  "x402Version": 1,
  "resource": "https://exclude.dropwatchhq.com/mcp",
  "network": "base",
  "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
  "payTo": "0x38134a7F97636E26365Fb17405566595B917a341",
  "facilitator": "https://facilitator.payai.network",
  "service": "exclude-feed",
  "description": "OIG-mandated MONTHLY healthcare exclusion screening: re-screen your whole roster against OIG-LEIE + OFAC + SAM and get a dated, signed compliance receipt. Agent-callable, pay-per-call or subscription.",
  "discoverable": true,
  "discovery": {
    "bazaar": "https://docs.cdp.coinbase.com/x402/bazaar",
    "list": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "search": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/search"
  },
  "tools": [
    {
      "name": "roster_rescreen",
      "price": "200000",
      "usd": "$0.20",
      "desc": "Re-screen a whole roster (OIG-mandated monthly LEIE check) against OIG-LEIE + OFAC + SAM and mint a dated, ed25519-signed compliance receipt.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "org": {
            "type": "string",
            "description": "Your organization name (printed on the compliance receipt)."
          },
          "period": {
            "type": "string",
            "description": "Compliance period as YYYY-MM (defaults to the current month)."
          },
          "roster": {
            "type": "array",
            "description": "The people/entities to screen. Each is a name string or {name, npi?, uei?, state?} object (max 250).",
            "items": {
              "type": [
                "string",
                "object"
              ]
            }
          }
        },
        "required": [
          "roster"
        ]
      },
      "outputSchema": {
        "type": "object",
        "description": "A full roster exclusion re-screen result for an OIG-mandated monthly LEIE check: every employee/contractor/vendor screened against HHS-OIG LEIE + OFAC + SAM, the count cleared vs. flagged, the flagged entities with their matched records, and a DATED, ed25519-SIGNED compliance receipt (content-hashed, offline-verifiable) that is the audit artifact proving who was screened, against which list build, on what date.",
        "properties": {
          "org": {
            "type": "string",
            "description": "The screened organization (printed on the receipt)."
          },
          "period": {
            "type": "string",
            "description": "Compliance period YYYY-MM."
          },
          "screenedAt": {
            "type": "string",
            "description": "ISO timestamp of the screen."
          },
          "entitiesScreened": {
            "type": "number",
            "description": "Roster size screened."
          },
          "cleared": {
            "type": "number",
            "description": "Count with NO MATCH on any list."
          },
          "matches": {
            "type": "number",
            "description": "Count flagged for review (on at least one list)."
          },
          "results": {
            "type": "array",
            "description": "Per-entity verdict (query, verdict, listsHit, confidence).",
            "items": {
              "type": "object"
            }
          },
          "flagged": {
            "type": "array",
            "description": "Only the flagged entities, with full matched records + sources.",
            "items": {
              "type": "object"
            }
          },
          "receipt": {
            "type": "object",
            "description": "The dated, ed25519-signed, content-hashed compliance receipt.",
            "properties": {
              "id": {
                "type": "string",
                "description": "Content-hash receipt id (xrcpt_...)."
              },
              "contentHash": {
                "type": "string",
                "description": "SHA-256 of the canonical receipt body."
              },
              "signature": {
                "type": "object",
                "description": "ed25519 signature + public key (offline-verifiable)."
              },
              "verifyUrl": {
                "type": "string",
                "description": "Machine + human verify endpoint for the receipt."
              }
            }
          }
        },
        "required": [
          "entitiesScreened",
          "cleared",
          "matches",
          "receipt"
        ]
      }
    },
    {
      "name": "screen_exclusion",
      "price": "50000",
      "usd": "$0.05",
      "desc": "Full deduped federal exclusion/sanctions screen for one entity.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Legal / business name of the entity to screen."
          },
          "npi": {
            "type": "string",
            "description": "Optional 10-digit NPI (healthcare) for an exact LEIE match."
          },
          "uei": {
            "type": "string",
            "description": "Optional SAM UEI."
          },
          "state": {
            "type": "string",
            "description": "Optional 2-letter state to disambiguate name matches."
          },
          "country": {
            "type": "string",
            "description": "Optional country to disambiguate."
          }
        },
        "required": [
          "name"
        ]
      },
      "outputSchema": {
        "type": "object",
        "description": "A full deduped federal exclusion / sanctions screen result for one business entity across OFAC SDN + Consolidated, HHS-OIG LEIE, SAM.gov debarment, and public state lists: a match/no-match verdict with a confidence score, the lists hit + checked, and the deduped matched records with per-record source, exclusion type, dates, and why-matched. FCRA-safe KYB compliance, not a consumer report.",
        "properties": {
          "query": {
            "type": "object",
            "description": "Echo of the screened entity (name, npi, uei, state, country)."
          },
          "match": {
            "type": "boolean",
            "description": "True if any record was matched on any list."
          },
          "verdict": {
            "type": "string",
            "enum": [
              "MATCH",
              "POSSIBLE MATCH",
              "NO MATCH"
            ],
            "description": "Overall verdict by highest-confidence finding."
          },
          "confidence": {
            "type": "number",
            "description": "Highest match confidence 0..1 (1.0 = exact ID/NPI, 0.95 = full name, 0.55 = weak partial)."
          },
          "listsHit": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Names of the federal/state lists that produced a match."
          },
          "listsChecked": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "All lists actually screened in this run."
          },
          "findings": {
            "type": "array",
            "description": "Deduped matched records, sorted by confidence. Each carries the list, exclusion/program, dates, source link, matchType, confidence, and the matchedOn explanation.",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "Matched record name as published by the source list."
                },
                "list": {
                  "type": "string",
                  "description": "Source list (OFAC-SDN, OIG-LEIE, SAM, state, etc.)."
                },
                "matchType": {
                  "type": "string",
                  "enum": [
                    "id",
                    "name",
                    "partial",
                    "weak"
                  ],
                  "description": "How the record matched the query."
                },
                "confidence": {
                  "type": "number",
                  "description": "Per-record confidence 0..1."
                },
                "matchedOn": {
                  "type": "string",
                  "description": "Human-readable reason this record matched."
                },
                "source": {
                  "type": "string",
                  "description": "Primary-source link/citation for the record."
                }
              }
            }
          },
          "byList": {
            "type": "object",
            "description": "Findings grouped by source list."
          },
          "disclaimer": {
            "type": "string",
            "description": "FCRA-safe KYB usage disclaimer."
          },
          "screenedAt": {
            "type": "string",
            "description": "ISO timestamp of the screen."
          }
        },
        "required": [
          "query",
          "match",
          "verdict",
          "confidence",
          "listsHit",
          "findings"
        ]
      }
    }
  ]
}