mcp_decrypt_pii_item
Decrypt encrypted personally identifiable information (PII) items using advanced cryptographic methods to restore original data values securely.
Instructions
MCP Tool: PII 항목 복호화
Args:
encrypted_value (str): 복호화할 암호화된 값
pii_type (str): PII 유형
Returns:
Dict[str, Any]: 복호화 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
encrypted_value | Yes | ||
pii_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"encrypted_value": {
"title": "Encrypted Value",
"type": "string"
},
"pii_type": {
"title": "Pii Type",
"type": "string"
}
},
"required": [
"encrypted_value",
"pii_type"
],
"title": "mcp_decrypt_pii_itemArguments",
"type": "object"
}