MCP PII Tools
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENAI_API_KEY | Yes | OpenAI API key (https://platform.openai.com/api-keys) | |
| PII_MASTER_KEY | Yes | PII encryption master key (32+ characters recommended) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| mcp_detect_piiC | |
| mcp_process_textC | |
| mcp_batch_processD | |
| mcp_anonymize_textC | |
| mcp_encrypt_pii_itemC | |
| mcp_decrypt_pii_itemC | |
| mcp_encrypt_text_piiC | |
| mcp_decrypt_text_piiC | |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
There is significant functional overlap between tools, particularly mcp_encrypt_text_pii and mcp_process_text which both combine detection with another operation, and mcp_decrypt_pii_item versus mcp_decrypt_text_pii which differ in scope but share core purpose. However, the descriptions help clarify the distinctions, preventing complete confusion.
All tools follow a consistent mcp_verb_noun naming pattern with snake_case throughout. The verbs (anonymize, batch_process, decrypt, detect, encrypt, process) are descriptive and uniformly applied, making the set predictable and easy to parse.
With 8 tools, the count is reasonable for a PII processing domain, covering detection, encryption, decryption, anonymization, and batch operations. It's slightly heavy due to overlapping tools but still within a well-scoped range for the purpose.
The toolset covers core PII operations well: detection, encryption, decryption, and anonymization, with batch processing for scalability. A minor gap exists in update or delete operations for PII data, but agents can work around this with the provided tools for most workflows.