mcp_decrypt_text_pii
Decrypt encrypted text to reveal personally identifiable information (PII) using secure cryptographic methods and original value mappings for data recovery.
Instructions
MCP Tool: 암호화된 텍스트에서 PII 복호화
Args:
encrypted_text (str): 암호화된 텍스트
encrypted_items (Dict[str, str]): 원본값 -> 암호화값 매핑
Returns:
Dict[str, Any]: 복호화 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
encrypted_items | Yes | ||
encrypted_text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"encrypted_items": {
"additionalProperties": {
"type": "string"
},
"title": "Encrypted Items",
"type": "object"
},
"encrypted_text": {
"title": "Encrypted Text",
"type": "string"
}
},
"required": [
"encrypted_text",
"encrypted_items"
],
"title": "mcp_decrypt_text_piiArguments",
"type": "object"
}