mcp_anonymize_text
Anonymize text by removing or encrypting personally identifiable information (PII) using GPT-4o detection and cryptographic methods to protect sensitive data.
Instructions
MCP Tool: 텍스트 익명화
Args:
text (str): 원본 텍스트
pii_items (List[Dict[str, Any]]): PII 항목들
Returns:
str: 익명화된 텍스트
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pii_items | Yes | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"pii_items": {
"items": {
"additionalProperties": true,
"type": "object"
},
"title": "Pii Items",
"type": "array"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"text",
"pii_items"
],
"title": "mcp_anonymize_textArguments",
"type": "object"
}