1. PiiInstrument
Detects and replaces specified PII entities like email addresses and person names in text streams.
2. IdbacInstrument
Applies data governance policies for access control and identity-based authorization.
Eunomia MCP Server is an open-source data governance extension for LLM applications that integrates Eunomia instruments with MCP servers to enforce policies like PII detection and access control.
{
"mcpServers": {
"web-browser-mcp-server": {
"command": "uv",
"args": ["tool", "run", "web-browser-mcp-server"],
"env": {"REQUEST_TIMEOUT": "30"}
}
},
"orchestra": {
"instruments": [
{
"type": "PiiInstrument",
"entities": ["EMAIL_ADDRESS", "PERSON"],
"edit_mode": "replace"
}
]
}
}