mcp_detect_pii
Detect personally identifiable information (PII) in text using GPT-4o-based analysis to identify sensitive data elements for privacy protection.
Instructions
MCP Tool: 텍스트에서 PII 탐지
Args:
text (str): 분석할 텍스트
Returns:
Dict[str, Any]: 탐지 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"text"
],
"title": "mcp_detect_piiArguments",
"type": "object"
}