{
  "protocol": "WebMCP",
  "version": "1.0",
  "publisher": "Nex-Trace Global",
  "tools": [
    {
      "name": "screen_counterparty",
      "description": "Screen a corporate entity against OFAC SDN and BIS Entity Lists, traversing multi-tier ownership chains to compute constructive blocking under OFAC FAQ 401.",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "target_name": {
            "type": "string",
            "description": "Legal entity name of the target or counterparty to screen (e.g. 'Al-Mirage Aerospace Spare Parts FZE')."
          },
          "country_iso": {
            "type": "string",
            "pattern": "^[A-Z]{2}$",
            "description": "Two-letter ISO 3166-1 alpha-2 country code (e.g. 'AE', 'US', 'CY', 'RU')."
          },
          "eccn_code": {
            "type": "string",
            "description": "Export Control Classification Number under 15 CFR Part 774 (e.g. '3A090.a', '2B001', '9A610.a')."
          },
          "max_depth": {
            "type": "integer",
            "minimum": 1,
            "maximum": 5,
            "default": 3,
            "description": "Maximum recursive graph traversal depth (default: 3)."
          }
        },
        "required": [
          "target_name"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "determine_eccn_license",
      "description": "Determine export licensing requirements, eligible license exceptions (LVS, GBS, STA, TSR, ENC), and reasons for control under 15 CFR Part 740/742.",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "eccn_code": {
            "type": "string",
            "description": "Export Control Classification Number (e.g. '3A090.a', '4A090', '2B001', '9A610.a', '5A002.a')."
          },
          "country_iso": {
            "type": "string",
            "pattern": "^[A-Z]{2}$",
            "description": "Two-letter ISO 3166-1 destination country code."
          },
          "is_military_end_user": {
            "type": "boolean",
            "default": false,
            "description": "Whether counterparty is a military end-user or involved in military end-use under 15 CFR \u00a7 744.21."
          },
          "de_minimis_pct": {
            "type": "number",
            "minimum": 0,
            "maximum": 100,
            "description": "Percentage of U.S.-origin controlled content for foreign-manufactured items (0-100%)."
          }
        },
        "required": [
          "eccn_code",
          "country_iso"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "simulate_ofac_50_rule",
      "description": "Deterministic mathematical coprocessor evaluating whether an entity is constructively blocked under OFAC FAQ 401 (31 CFR Chapter V) and generating ERP hold decision.",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "aggregate_equity_pct": {
            "type": "number",
            "minimum": 0.0,
            "maximum": 100.0,
            "description": "Total attributable blocked equity percentage held directly or indirectly by blocked persons."
          },
          "target_name": {
            "type": "string",
            "default": "Simulated Counterparty Corp",
            "description": "Entity name to evaluate."
          }
        },
        "required": [
          "aggregate_equity_pct"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "request_safe_harbor_dossier",
      "description": "Request or generate an EAR \u00a7 762 Safe Harbor compliance audit package with SHA-256 digital seal and 5-year retention affirmative defense.",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "format": "email",
            "description": "Work email address of the trade compliance or legal officer."
          },
          "company_name": {
            "type": "string",
            "description": "Legal company or prime contractor name."
          },
          "defense_tier": {
            "type": "string",
            "enum": [
              "Tier 1 Prime Contractor",
              "Tier 2 Subcontractor",
              "Tier 3 Component Supplier",
              "Freight Forwarder / 3PL",
              "Trade Compliance Counsel"
            ],
            "description": "Supply chain defense classification tier."
          }
        },
        "required": [
          "email",
          "company_name"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "deconflict_consignee_address",
      "description": "Evaluate delivery or consignee address against known high-density corporate shell clusters and BIS Red Flag #4 evasion facilities (15 CFR \u00a7 732 Supp. 3).",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "address_line": {
            "type": "string",
            "description": "Physical delivery address line (e.g. '89 Queensway, Lippo Centre Tower 2, Hong Kong')."
          },
          "country_iso": {
            "type": "string",
            "pattern": "^[A-Z]{2}$",
            "description": "Destination country ISO-2 code."
          }
        },
        "required": [
          "address_line",
          "country_iso"
        ],
        "additionalProperties": false
      }
    }
  ]
}