MCP Server
Active
MIT
io.github.Rinava/umbryn-mcp MCP Server
io.github.Rinava/umbryn-mcp
What is the io.github.Rinava/umbryn-mcp MCP server?
Redacts PII/PHI from text before it reaches an LLM. Fail-closed, self-hosted, no egress.
How to install io.github.Rinava/umbryn-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
UMBRYN_ENGINEDetection engine: auto (default), regex, or presidio
UMBRYN_MIN_CONFIDENCETrust threshold (0-1); detections below it fail closed. Default 0.5
UMBRYN_DETECTION_FLOORSensitivity floor (0-1); below this a signal is noise. Default 0.35
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"umbryn-mcp": {
"command": "uvx",
"args": [
"umbryn-mcp"
],
"env": {
"UMBRYN_ENGINE": "<YOUR_UMBRYN_ENGINE>",
"UMBRYN_MIN_CONFIDENCE": "<YOUR_UMBRYN_MIN_CONFIDENCE>",
"UMBRYN_DETECTION_FLOOR": "<YOUR_UMBRYN_DETECTION_FLOOR>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"umbryn-mcp": {
"command": "uvx",
"args": [
"umbryn-mcp"
],
"env": {
"UMBRYN_ENGINE": "<YOUR_UMBRYN_ENGINE>",
"UMBRYN_MIN_CONFIDENCE": "<YOUR_UMBRYN_MIN_CONFIDENCE>",
"UMBRYN_DETECTION_FLOOR": "<YOUR_UMBRYN_DETECTION_FLOOR>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"umbryn-mcp": {
"command": "uvx",
"args": [
"umbryn-mcp"
],
"env": {
"UMBRYN_ENGINE": "<YOUR_UMBRYN_ENGINE>",
"UMBRYN_MIN_CONFIDENCE": "<YOUR_UMBRYN_MIN_CONFIDENCE>",
"UMBRYN_DETECTION_FLOOR": "<YOUR_UMBRYN_DETECTION_FLOOR>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"umbryn-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"umbryn-mcp"
],
"env": {
"UMBRYN_ENGINE": "<YOUR_UMBRYN_ENGINE>",
"UMBRYN_MIN_CONFIDENCE": "<YOUR_UMBRYN_MIN_CONFIDENCE>",
"UMBRYN_DETECTION_FLOOR": "<YOUR_UMBRYN_DETECTION_FLOOR>"
}
}
}
}Claude Code
claude mcp add umbryn-mcp --env UMBRYN_ENGINE=<YOUR_UMBRYN_ENGINE> --env UMBRYN_MIN_CONFIDENCE=<YOUR_UMBRYN_MIN_CONFIDENCE> --env UMBRYN_DETECTION_FLOOR=<YOUR_UMBRYN_DETECTION_FLOOR> -- uvx umbryn-mcp