Anonyflow

AnonyFlow offers a simple and powerful service for encryption-based data anonymization and community sharing, enabling GDPR, CCPA, and HIPAA data privacy protection compliance.

5 actions Integration catalog
Request access
Connect Anonyflow once you're in Boring.
01 · WHAT THE AGENT CAN DO

Actions

Every capability is a discrete, logged action the agent calls by name — scoped to what you authorize and recorded in the run trace.

Anonymize PacketANONYFLOW_ANONYMIZE_PACKET
Tool to anonymize a JSON data packet with support for partial anonymization. Use when you need to conceal specific fields in structured data. If keys array is empty, the complete data packet will be anonymized.
Anonymize ValueANONYFLOW_ANONYMIZE_VALUE
Tool to anonymize a string or array of string values. Use when you need to conceal sensitive text before storage or transmission. Example: `AnonymizeValue().execute(AnonymizeValueRequest(data=['secret']))` Limitations: Only supports list of strings, not nested structures.
Deanonymize PacketANONYFLOW_DEANONYMIZE_PACKET
Tool to deanonymize a JSON data packet using your private key. Use after receiving an anonymized packet to recover specific fields.
Deanonymize ValueANONYFLOW_DEANONYMIZE_VALUE
Tool to deanonymize one or more anonymized string values. Use when you need to recover the original plaintext values after encryption-based anonymization. Example: `DeanonymizeValue().execute(DeanonymizeValueRequest(data=["<anonymized_string>"]))`
Test ConnectionANONYFLOW_TEST_CONNECTION
Tool to test the connection to the AnonyFlow API. Use when verifying that the AnonyFlow service is reachable and operational before performing anonymization tasks. Example: `TestConnection().execute(TestConnectionRequest())`