teodorofodocrispin-cmyk/trustboost-pii-sanitizer

πŸ”’ Security
0 Views
0 Installs

🐍 ☁️ - PII sanitization layer for autonomous AI agent pipelines. Detects and redacts emails, phone numbers, national IDs, private keys, and financial data before text reaches LLMs. Supports EN, ES (LATAM), PT (BR/PT), DE, JA. Solana-native payments via Helius oracle.

Quick Install

One-Click IDE Configuration
claude_desktop_config.json
{
  "mcpServers": {
    "teodorofodocrispin-cmyk-trustboost-pii-sanitizer": {
      "command": "npx",
      "args": [
        "-y",
        "teodorofodocrispin-cmyk-trustboost-pii-sanitizer"
      ]
    }
  }
}
Or

Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.

Documentation Overview

TrustBoost PII Sanitizer

A precision PII redaction layer for autonomous AI agent pipelines. Detects and redacts personally identifiable information before it reaches LLM providers, across English, Spanish (LATAM), Portuguese (BR/PT), German, Japanese, French, Italian, and Korean.

  • Endpoint: https://api.trustboost.dev/sanitize
  • Stack: FastAPI Β· OpenAI gpt-4o-mini (temperature 0) Β· Supabase Β· Solana payments via Helius

πŸ›‘οΈ Live Demo β€” no registration required

Try TrustBoost instantly in your browser: πŸ‘‰ https://huggingface.co/spaces/TrustBoost/pii-sanitizer

Try it in 10 seconds β€” no wallet needed

curl -X POST https://api.trustboost.dev/sanitize/preview \
  -H "Content-Type: application/json" \
  -d '{"text": "My name is John Doe, email john@gmail.com, SSN 123-45-6789"}'
{
  "sanitized_content": "My name is [REDACTED], email [REDACTED], SSN [REDACTED]",
  "safety_score": 0.6,
  "risk_category": "PRIVATE",
  "demo": true,
  "requests_remaining": 2,
  "next": "https://github.com/teodorofodocrispin-cmyk/TrustBoost-PII-Sanitizer#trial"
}

3 free previews per IP Β· no account Β· no wallet Β· no setup. Ready for more? See Trial mode below β€” 50 free sanitizations with a Solana wallet.


Pay-per-call β€” /sanitize/quick (recommended for M2M agents)

The lightest-weight entry point for autonomous agents: pay $0.01 USDC per call, no TRIAL, no tx_hash, no prepaid bundle.

curl -X POST https://api.trustboost.dev/sanitize/quick \
  -H "Content-Type: application/json" \
  -H "PAYMENT-SIGNATURE: <base64-encoded x402 v2 signature>" \
  -d '{"text": "Contact John at john@company.com, SSN 123-45-6789"}'
  • Networks: Base (eip155:8453, preferred) or Solana (solana:5eykt4...) β€” auto-detected
  • Verified + settled via PayAI facilitator
  • X-PAYMENT header also accepted (x402 v1, legacy)
  • No text or no payment header yet? Returns a standard x402 v2 402 with payment instructions
  • For 10,000+ calls, the prepaid bundle (149 USDC) is cheaper per call

MCP Server β€” Claude, Cursor & Windsurf native integration

TrustBoost is available as an MCP (Model Context Protocol) server. Add it to any MCP-compatible agent in one line:

{
  "mcpServers": {
    "trustboost": {
      "url": "https://api.trustboost.dev/mcp"
    }
  }
}

Once connected, your agent can call sanitize_pii automatically before sending any text to an LLM:

# Manifest
curl https://api.trustboost.dev/mcp

# Execute
curl -X POST https://api.trustboost.dev/mcp \
  -H "Content-Type: application/json" \
  -d '{"tool": "sanitize_pii", "input": {"text": "My email is john@gmail.com"}}'

Compatible with: Claude Code Β· Cursor Β· Windsurf Β· Any MCP-compatible agent


Quick start

curl -X POST https://api.trustboost.dev/sanitize \
  -H 'Content-Type: application/json' \
  -d '{
    "text": "My email is jane@example.com and my AWS key is AKIAIOSFODNN7EXAMPLE",
    "tx_hash": "TRIAL",
    "wallet_address": "your-agent-id"
  }'

Trial mode (tx_hash="TRIAL") gives 50 free sanitizations per wallet_address. Paid mode requires 149 USDC on Solana to the configured payment wallet, which unlocks 10,000 sanitizations per transaction signature.

Response schema (v2.6.0)

{
  "status": "success",
  "request_id": "TRIAL",
  "data": {
    "message": "Content successfully sanitized and logged.",
    "sanitized_content": "My email is [REDACTED] and my AWS key is [REDACTED]",
    "safety_score": 0.6,
    "risk_category": "CRITICAL",
    "entities_removed": true,
    "entities": [
      { "type": "email",          "category": "PRIVATE",  "redacted_text": "jane@example.com" },
      { "type": "aws_access_key", "category": "CRITICAL", "redacted_text": "AKIAIOSFODNN7EXAMPLE" }
    ],
    "redaction_source": "server",
    "timestamp": "2026-05-03T23:48:14.500705+00:00",
    "usage_metrics": { "quota_remaining": 48, "quota_limit": 50 }
  },
  "billing": { "license_type": "TRIAL", "status": "active" }
}

Field guide

FieldTypeNotes
sanitized_contentstringSame language and structure as input, with PII replaced by [REDACTED].
entitiesEntity[]One element per [REDACTED] tag. Stable, machine-friendly.
safety_scorefloat 0.0 – 1.0Server-side, deterministic. Computed from entities, not the model.
risk_categoryCRITICAL/PRIVATE/SENSITIVE/CLEANHighest tier present in entities.
entities_removedboolConvenience: true iff entities is non-empty.
redaction_source"model" | "server" | "fallback_full_redaction"Telemetry: who actually performed the redaction (see below).
unmatched_entitiesEntity[] (optional)Entities the model reported but whose redacted_text wasn't found verbatim in the input. Omitted when empty.

Risk weights

safety_score is the sum of per-entity weights, capped at 1.0:

  • CRITICAL β†’ 0.40 (API keys, private keys, seed phrases, credentials, card numbers, …)
  • PRIVATE β†’ 0.20 (emails, phone numbers, national IDs, addresses, names, …)
  • SENSITIVEβ†’ 0.05 (handles, partial identifiers, DOB, …)

risk_category is the highest-severity tier with at least one entity, or "CLEAN" if entities is empty.

Server-side redaction enforcement (v2.6.0)

The model returns two things that have to agree: cleaned_text and entities. In practice they sometimes disagree β€” the model can correctly identify an entity in entities but fail to actually replace it in cleaned_text. That produces a sanitized_content that still leaks PII while the audit trail says everything is fine, which is worse than no audit trail.

v2.2 fixes this structurally. The model is now treated purely as a detector: it returns the entity list. The server is the redactor: for every entity whose redacted_text is a non-empty substring of the original input, the server replaces all occurrences with [REDACTED]. Long entities are processed before short ones to avoid partial overlap.

Conservative redaction by design: if the same value (e.g. η”°δΈ­ε€ͺιƒŽ) appears twice in the input, both occurrences are scrubbed.

The redaction_source field tells you what happened:

  • "model" β€” the model's cleaned_text already matched the entity list, so server-side enforcement was a no-op (the model did its job).
  • "server" β€” the server-side enforcer replaced one or more entities the model failed to remove. Track this metric over time as a model-reliability signal: a rising server rate means the prompt or model is drifting.
  • "fallback_full_redaction" β€” the model returned malformed JSON; the failsafe parser triggered and the entire input was redacted as a single CRITICAL entity. Should be near-zero in steady state.

When the model's redacted_text does not appear verbatim in the input (paraphrasing, normalization, or hallucination), the entity is preserved in entities (and counts toward safety_score) but is also returned in unmatched_entities so callers can audit it.

Failure mode: fail-safe, not fail-open

If the upstream model returns malformed JSON, the response degrades to a single CRITICAL entity covering the entire input rather than risking a silent leak. Over-redaction is always preferred over under-redaction.

Languages and patterns

The system prompt covers, among others:

  • English (global): emails, phones, SSN, credit cards, IBAN, IPs, addresses, and provider-specific API keys (OpenAI, Anthropic, GitHub, AWS, Google, Slack, HuggingFace, Stripe), private keys, crypto wallets, seed phrases.
  • Spanish (LATAM): RFC, CURP, CUIT/CUIL, RUT, DNI, RUC, NIT, CΓ©dula, country phones.
  • Portuguese (BR/PT): CPF, CNPJ, RG, NIF, NUS, CEP, country phones.
  • German (DE/AT/CH): Personalausweis, Steuer-IDs, Sozialversicherungsnummer, IBAN DE, addresses.
  • Japanese: γƒžγ‚€γƒŠγƒ³γƒγƒΌ, 法人η•ͺ号, 運軒免許証, γƒ‘γ‚ΉγƒγƒΌγƒˆ, ε₯康保険証, ι›»θ©±η•ͺ号, 住所, and 氏名 (full names in kanji, mixed scripts, katakana, or hiragana).
  • French (FR/BE/CH/CA): NIR (NumΓ©ro de SΓ©curitΓ© Sociale), SIRET, SIREN, Carte Vitale, IBAN FR, NumΓ©ro fiscal, country phones +33/+32/+41.
  • Italian (IT): Codice Fiscale, Partita IVA, Carta d'IdentitΓ  (CIE), Tessera Sanitaria, IBAN IT, Patente di Guida, country phone +39.
  • Korean (KR): μ£Όλ―Όλ“±λ‘λ²ˆν˜Έ (RRN), μ‚¬μ—…μžλ“±λ‘λ²ˆν˜Έ, μ—¬κΆŒλ²ˆν˜Έ, μš΄μ „λ©΄ν—ˆλ²ˆν˜Έ, κ±΄κ°•λ³΄ν—˜λ²ˆν˜Έ, μ™Έκ΅­μΈλ“±λ‘λ²ˆν˜Έ, country phone +82.

Running locally

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

cp .env.example .env  # then fill in real keys
uvicorn main:app --reload

Required environment variables:

  • OPENAI_API_KEY
  • SUPABASE_URL, SUPABASE_KEY
  • HELIUS_API_KEY, PAYMENT_WALLET
  • Optional: TRIAL_QUOTA (default 50), PAID_QUOTA (default 10000), REQUIRED_PAYMENT_USDC (default 149)

Tests

pip install pytest
python -m pytest tests/test_sanitize.py -v          # unit tests, no creds needed
TRUSTBOOST_LIVE=1 python -m pytest tests/test_live.py -v   # hits real /sanitize

The live tests consume TRIAL quota; set TRUSTBOOST_WALLET to a CI-specific identifier so they don't share quota with developer wallets.

Versioning

  • 2.6 β€” Proof of Sanitization on Solana via Helius. Every paid sanitization anchored on-chain. Verifiable at /verify/{anchor_tx}. x402 native β€” HTTP 402 with autonomous payment instructions. CORS for browser agents. agent-card.json for Circle Agent Stack discovery.
  • 2.5 β€” Context-Aware Sanitization, Privacy Budget per Agent, TrustBoost Score M2M.
  • 2.2 β€” server-side redaction enforcer, redaction_source telemetry, unmatched_entities audit field.
  • 2.3 β€” Context-Aware Sanitization: context field in /sanitize (legal/financial/medical/code/general). Adjusts sanitization depth per context type. Adds context_applied to response.
  • 2.4 β€” Privacy Budget per Agent: agent_budgets table in Supabase. Operators configure daily limits once, agents operate autonomously within them.
  • 2.5 β€” TrustBoost Score: /score/{wallet} endpoint. M2M trust verification with trust tier (TRUSTED/VERIFIED/ACTIVE/NEW). Aggregated from audit_log.
  • 2.6 β€” Proof of Sanitization on Solana: every paid sanitization is anchored on-chain via Helius Memo transaction. Verifiable by anyone at /verify/{anchor_tx}. Returns proof_of_sanitization object with Solscan link.
  • 2.1 β€” structured entities array, server-side deterministic scoring, hardened JSON parsing, improved Japanese 氏名 detection.
  • 2.0 β€” multilingual prompt rewrite.

Related MCP Servers

13bm/GhidraMCP

🐍 β˜• 🏠 - MCP server for integrating Ghidra with AI assistants. This plugin enables binary analysis, providing tools for function inspection, decompilation, memory exploration, and import/export analysis via the Model Context Protocol.

πŸ”’ Security1 views
123Ergo/unphurl-mcp

πŸ“‡ ☁️ - URL intelligence for AI agents. 13 tools for security signals and data quality: redirect behaviour, brand impersonation detection, domain age, SSL validation, parked detection, URL structural analysis, DNS enrichment.

πŸ”’ Security0 views
82ch/MCP-Dandan

🐍 πŸ“‡ 🏠 🍎 πŸͺŸ 🐧 - Real-time security framework for MCP servers that detects and blocks malicious AI agent behavior by analyzing tool call patterns and intent across multiple threat detection engines.

πŸ”’ Security0 views
9hannahnine-jpg/arc-gate-mcp

🐍 - Runtime governance for MCP tool calls. Blocks prompt injection and capability abuse before tool results reach your agent.

πŸ”’ Security0 views

Engagement

Views
0
Installs
0
Upvotes
0

Views and upvotes are unique per visitor network (hashed IP). Installs count copy actions.

Status

Health: Not checked yet

We have not completed a health check for this listing yet.

No check timestamp yet.

Unclaimed listing (imported or pending owner verification). Claim it β†’
β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Claim this listing

Promote this listing

Optional paid placement. Free listings stay free forever.

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.