{
  "info": {
    "name": "Anonyflow — mcp.ai",
    "description": "REST API for the Anonyflow MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/anonyflow",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "anonyflow_anonymize_packet",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/anonymize/packet",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "anonymize",
            "packet"
          ]
        },
        "description": "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 a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {},\n  \"keys\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "anonyflow_anonymize_value",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/anonymize/value",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "anonymize",
            "value"
          ]
        },
        "description": "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",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "anonyflow_deanonymize_packet",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/deanonymize/packet",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "deanonymize",
            "packet"
          ]
        },
        "description": "Tool to deanonymize a JSON data packet using your private key. Use after receiving an anonymized packet to recover specific fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {},\n  \"keys\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "anonyflow_deanonymize_value",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/deanonymize/value",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "deanonymize",
            "value"
          ]
        },
        "description": "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(Deanonym",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "anonyflow_test_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/test/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "test",
            "connection"
          ]
        },
        "description": "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(T",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}