security_scan
Identify and redact Personally Identifiable Information (PII) and sensitive data in text using Kratos-MCP server. Ensure data privacy and security compliance in codebases by scanning and optionally returning redacted content.
Instructions
Scan text for PII and secrets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
redact | No | Return redacted version | |
text | Yes | Text to scan |
Input Schema (JSON Schema)
{
"properties": {
"redact": {
"description": "Return redacted version",
"type": "boolean"
},
"text": {
"description": "Text to scan",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}