{
  "info": {
    "name": "Proxiedmail — mcp.ai",
    "description": "REST API for the Proxiedmail 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/proxiedmail",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "proxiedmail_create_webhook_receiver",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook/receiver",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook",
            "receiver"
          ]
        },
        "description": "Tool to create a webhook receiver for incoming email callbacks. Use when you need a unique endpoint to capture proxiedmail webhook events.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "proxiedmail_get_api_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/api/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "api",
            "token"
          ]
        },
        "description": "Tool to retrieve a permanent API token. Use after obtaining a Bearer token from the auth endpoint (POST /api/v1/auth).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bearer_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "proxiedmail_get_webhook_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/webhook/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "webhook",
            "data"
          ]
        },
        "description": "Tool to retrieve data from a webhook receiver. Returns the payload sent to the webhook's call_url, status info about whether a callback was received, and the HTTP method used.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hash\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "proxiedmail_list_proxy_bindings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/proxy/bindings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "proxy",
            "bindings"
          ]
        },
        "description": "Tool to fetch a list of proxy bindings. Use after authentication to list all proxy bindings associated with the user.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "proxiedmail_update_proxy_binding",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/proxy/binding",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "proxy",
            "binding"
          ]
        },
        "description": "Tool to update an existing proxy binding. Use after obtaining the binding ID to modify its addresses or settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"data\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}