{
  "info": {
    "name": "Sequenzy — mcp.ai",
    "description": "REST API for the Sequenzy 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/sequenzy",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "sequenzy_create_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "tag"
          ]
        },
        "description": "Create a reusable subscriber tag definition; Sequenzy normalizes its name to lowercase and replaces spaces with hyphens.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"color\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_delete_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tag"
          ]
        },
        "description": "Permanently delete a non-system tag definition and remove it from every subscriber. Do not use this on system tags; Sequenzy also rejects tags referenced by sequences.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_get_email_metrics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/email/metrics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "email",
            "metrics"
          ]
        },
        "description": "Return workspace-wide email delivery and engagement totals and rates for a sliding window or custom range, optionally filtered by email type or mailbox provider. Mailbox-provider filtering reports rep",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"start\": \"\",\n  \"period\": \"\",\n  \"email_type\": \"\",\n  \"mailbox_provider\": \"\",\n  \"include_machine_engagement\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_get_subscriber",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/subscriber",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "subscriber"
          ]
        },
        "description": "Retrieve one subscriber by email with list memberships, sequence enrollments, notes, engagement totals, and recent activity.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"include_machine_engagement\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_list_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "campaigns"
          ]
        },
        "description": "Discover campaigns in the connected workspace, optionally filtered by delivery status or label, without scheduling or sending them.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"label\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_list_sequences",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sequences",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sequences"
          ]
        },
        "description": "Discover automation sequences and inspect whether they accept new enrollments or process existing ones, without activating or enrolling anyone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"labels\": \"\",\n  \"offset\": 0,\n  \"search\": \"\",\n  \"status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_list_subscriber_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/subscriber/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "subscriber",
            "lists"
          ]
        },
        "description": "Return the reusable subscriber lists available for audience filtering and membership workflows.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_list_subscribers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/subscribers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "subscribers"
          ]
        },
        "description": "Search and filter subscribers in the connected workspace, returning one stable cursor page for audience review or export.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"status\": \"\",\n  \"list_id\": \"\",\n  \"tag_names\": \"\",\n  \"segment_id\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "Return reusable subscriber tag definitions, including which tags are protected system tags.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sequenzy_list_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates"
          ]
        },
        "description": "Discover reusable email templates and campaign-backed email bodies by label, returning one page with localization metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"label\": \"\",\n  \"limit\": 0,\n  \"offset\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}