pseudonym-mcp 0.2.4 → 0.2.5

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # pseudonym-mcp
2
2
 
3
- Local privacy proxy for LLMs — pseudonymizes sensitive data before it reaches the cloud, restores it on the way back.
3
+ Local privacy proxy for LLMs — pseudonymizes sensitive data before it reaches the cloud, then restores it on the way back.
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/pseudonym-mcp?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/pseudonym-mcp)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-ffd60a?style=flat-square)](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pseudonym-mcp",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
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",
@@ -21,6 +21,7 @@
21
21
  "scripts": {
22
22
  "build": "tsc",
23
23
  "test": "vitest",
24
+ "test:run": "vitest run",
24
25
  "test:ui": "vitest --ui",
25
26
  "test:coverage": "vitest --coverage",
26
27
  "lint": "eslint src tests",