Skip to main content

Sentinel Tag

Tier 1 Classification ● live

PII/PCI/PHI classification at ingestion. Automatically identifies and tags sensitive data fields before they enter the lakehouse.

Tier
Tier 1
Phase
Classification
Pricing
$0.00010 USDC/row
MCP Tool
sentinel_tag_classify
Dependencies

What It Does

Sentinel Tag scans every field in every row and classifies sensitive data according to regulatory frameworks: PII, PCI, and PHI. It uses pattern matching (regex for SSNs, credit card numbers), ML-based entity recognition (names, addresses), and contextual analysis to achieve high-accuracy classification.

Capabilities

  • PII detection (names, emails, SSNs, addresses)
  • PCI detection (card numbers, CVVs, expiry dates)
  • PHI detection (medical record numbers, diagnoses)
  • ML-based entity recognition
  • Field-level sensitivity tagging
  • Regulatory framework mapping
  • Confidence scoring per field

Example

sentinel-tag-example.ts
const result = await mcp.call('sentinel_tag_classify', {
  payload: sanitizedPayload,
  stream_uuid: streamUUID,
  frameworks: ['pii', 'pci', 'phi'],
});
// { "email": "PII:EMAIL", "card_number": "PCI:PAN" }
console.log(result.sensitivity_score); // 0.87

Configuration

sentinel-tag.yaml
agent: sentinel-tag
version: "1.0"
classification:
  pii: enabled
  pci: enabled
  phi: enabled
output:
  tag_format: redqueen-sensitivity-v1
  include_confidence: true
  min_confidence: 0.85

MCP Tool

sentinel_tag_classify

Try in MCP Explorer →

Pricing

$0.00010 USDC/row

View full pricing →