mcp_batch_process
Process multiple texts simultaneously to detect, anonymize, encrypt, or decrypt personally identifiable information using advanced cryptographic methods.
Instructions
MCP Tool: 여러 텍스트 일괄 처리
Args:
texts (List[str]): 처리할 텍스트 리스트
Returns:
Dict[str, Any]: 일괄 처리 결과
Input Schema
Name | Required | Description | Default |
---|---|---|---|
texts | Yes |
Input Schema (JSON Schema)
{
"properties": {
"texts": {
"items": {
"type": "string"
},
"title": "Texts",
"type": "array"
}
},
"required": [
"texts"
],
"title": "mcp_batch_processArguments",
"type": "object"
}