mcp_encrypt_pii_item
Encrypts personally identifiable information (PII) items using advanced cryptographic methods to protect sensitive data while maintaining searchability and format preservation.
Instructions
MCP Tool: PII 항목 암호화
Args:
pii_value (str): 암호화할 PII 값
pii_type (str): PII 유형 (이름, 전화번호, 이메일 등)
Returns:
Dict[str, Any]: 암호화 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pii_type | Yes | ||
pii_value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pii_type": {
"title": "Pii Type",
"type": "string"
},
"pii_value": {
"title": "Pii Value",
"type": "string"
}
},
"required": [
"pii_value",
"pii_type"
],
"title": "mcp_encrypt_pii_itemArguments",
"type": "object"
}