pseudonym-mcp 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -4
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -441,6 +441,18 @@ In `hybrid` mode, Ollama runs after the regex pass so the LLM never sees already
|
|
|
441
441
|
- **No model training.** The local Ollama model operates entirely offline. Your data is not used to train any model.
|
|
442
442
|
- **Strict validation by default.** Invalid SSNs (area 000/666/900+), failed-Luhn credit card numbers, and invalid-checksum PESELs are not masked, preventing false positives from OCR errors or random digit sequences.
|
|
443
443
|
|
|
444
|
+
## Limitations
|
|
445
|
+
|
|
446
|
+
pseudonym-mcp is a technical privacy control, not a legal guarantee of compliance.
|
|
447
|
+
|
|
448
|
+
- Detection is best-effort — false negatives and false positives are possible.
|
|
449
|
+
- Indirect references (e.g. _"the tall guy from accounting"_) are not detected.
|
|
450
|
+
- If plaintext is logged before being passed to `mask_text`, pseudonym-mcp cannot protect it.
|
|
451
|
+
- The mapping store is process-local; restarting the server ends the session.
|
|
452
|
+
- Re-identification is possible for anyone with access to the local mapping store — this is pseudonymization, not anonymization.
|
|
453
|
+
|
|
454
|
+
> Under GDPR Art. 4(5), pseudonymized data is still personal data in your system. pseudonym-mcp substantially reduces risk but does not eliminate your legal obligations.
|
|
455
|
+
|
|
444
456
|
## Development
|
|
445
457
|
|
|
446
458
|
```sh
|
|
@@ -469,10 +481,6 @@ Contributions are welcome. Please follow [Conventional Commits](https://www.conv
|
|
|
469
481
|
|
|
470
482
|
Language pack contributions are especially welcome — German (Personalausweis, Steuer-ID), French (NIR, SIRET), Spanish (DNI/NIE) and others would significantly expand the tool's usefulness.
|
|
471
483
|
|
|
472
|
-
## Keyword index
|
|
473
|
-
|
|
474
|
-
> For discoverability: **AI privacy**, **LLM data privacy**, **PII masking**, **PII redaction**, **PII detection**, **data pseudonymization**, **GDPR LLM compliance**, **GDPR AI**, **EU AI Act**, **CCPA compliance**, **HIPAA AI**, **PCI DSS tokenization**, **SOC 2 data handling**, **personal data protection**, **sensitive data scrubbing**, **NER anonymization**, **named entity recognition privacy**, **Claude privacy layer**, **MCP privacy proxy**, **local AI processing**, **on-premise AI**, **zero-trust AI**, **data minimisation**, **privacy by design**, **SSN masking**, **credit card masking**, **Luhn validation**, **PESEL masking**, **Polish PII**, **RODO**, **UODO compliance**, **healthcare AI privacy**, **financial data redaction**, **PSD2 privacy**, **tokenization NLP**, **prompt sanitization**, **context window privacy**, **offline NER**, **Ollama privacy**, **local LLM privacy**, **cross-border data transfer**, **data protection by design**, **PIPEDA**, **LGPD**, **POPIA**.
|
|
475
|
-
|
|
476
484
|
## License
|
|
477
485
|
|
|
478
486
|
MIT — Adrian Wolczuk
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pseudonym-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"mcpName": "io.github.woladi/pseudonym-mcp",
|
|
5
5
|
"description": "MCP server for privacy-preserving pseudonymization of sensitive data before cloud LLM processing",
|
|
6
6
|
"type": "module",
|
|
@@ -108,7 +108,8 @@
|
|
|
108
108
|
"$schema": "https://unpkg.com/release-it/schema/release-it.json",
|
|
109
109
|
"git": {
|
|
110
110
|
"commitMessage": "chore: release v${version}",
|
|
111
|
-
"tagName": "v${version}"
|
|
111
|
+
"tagName": "v${version}",
|
|
112
|
+
"push": false
|
|
112
113
|
},
|
|
113
114
|
"npm": {
|
|
114
115
|
"publish": true
|