pseudonym-mcp 0.2.1 → 0.2.2
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 +8 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -197,10 +197,10 @@ The `session_id` keeps the token map alive for the entire session — the same `
|
|
|
197
197
|
|
|
198
198
|
## Quick Start
|
|
199
199
|
|
|
200
|
-
**Step 1** —
|
|
200
|
+
**Step 1** — Add to your MCP client (example for Claude Code — no install needed):
|
|
201
201
|
|
|
202
202
|
```sh
|
|
203
|
-
|
|
203
|
+
claude mcp add pseudonym-mcp -- npx -y pseudonym-mcp --engines hybrid
|
|
204
204
|
```
|
|
205
205
|
|
|
206
206
|
**Step 2** — (Optional) Pull an Ollama model for full hybrid NER:
|
|
@@ -211,11 +211,7 @@ ollama pull llama3
|
|
|
211
211
|
|
|
212
212
|
Skip this step if you only need regex-based masking (`--engines regex`).
|
|
213
213
|
|
|
214
|
-
**
|
|
215
|
-
|
|
216
|
-
```sh
|
|
217
|
-
claude mcp add pseudonym-mcp -- pseudonym-mcp --engines hybrid
|
|
218
|
-
```
|
|
214
|
+
> **Global install** — if you prefer `npm install -g pseudonym-mcp`, replace `npx -y pseudonym-mcp` with `pseudonym-mcp` in all snippets below.
|
|
219
215
|
|
|
220
216
|
Restart your client. The `mask_text` and `unmask_text` tools appear automatically.
|
|
221
217
|
|
|
@@ -298,7 +294,7 @@ pseudonym-mcp --lang en --engines regex --ollama-model llama3 --auto-unmask
|
|
|
298
294
|
### Claude Code
|
|
299
295
|
|
|
300
296
|
```sh
|
|
301
|
-
claude mcp add pseudonym-mcp -- pseudonym-mcp --engines hybrid
|
|
297
|
+
claude mcp add pseudonym-mcp -- npx -y pseudonym-mcp --engines hybrid
|
|
302
298
|
```
|
|
303
299
|
|
|
304
300
|
### Claude Desktop
|
|
@@ -309,8 +305,8 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:
|
|
|
309
305
|
{
|
|
310
306
|
"mcpServers": {
|
|
311
307
|
"pseudonym-mcp": {
|
|
312
|
-
"command": "
|
|
313
|
-
"args": ["--engines", "hybrid"]
|
|
308
|
+
"command": "npx",
|
|
309
|
+
"args": ["-y", "pseudonym-mcp", "--engines", "hybrid"]
|
|
314
310
|
}
|
|
315
311
|
}
|
|
316
312
|
}
|
|
@@ -324,8 +320,8 @@ Add to `~/.cursor/mcp.json`:
|
|
|
324
320
|
{
|
|
325
321
|
"mcpServers": {
|
|
326
322
|
"pseudonym-mcp": {
|
|
327
|
-
"command": "
|
|
328
|
-
"args": ["--engines", "regex"]
|
|
323
|
+
"command": "npx",
|
|
324
|
+
"args": ["-y", "pseudonym-mcp", "--engines", "regex"]
|
|
329
325
|
}
|
|
330
326
|
}
|
|
331
327
|
}
|