{
  "info": {
    "name": "Kit — mcp.ai",
    "description": "REST API for the Kit 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/kit",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "kit_add_subscriber_to_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/subscriber/to/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "subscriber",
            "to",
            "form"
          ]
        },
        "description": "Tool to add a subscriber to a specific form by id. use after confirming form and subscriber ids.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"form_id\": 0,\n  \"referrer\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_create_custom_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/custom/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "custom",
            "field"
          ]
        },
        "description": "Tool to create a new custom field for subscriber data. use when you need to store extra attributes for subscribers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"label\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_create_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "tag"
          ]
        },
        "description": "Tool to create a new tag in the account. use when you need a custom label to segment subscribers. use after confirming tag uniqueness to avoid duplicates. example: \"create a tag called 'vip' for premi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_create_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "webhook"
          ]
        },
        "description": "Tool to create a new webhook subscription. use when you need subscriber or purchase event notifications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event\": {},\n  \"target_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_delete_broadcast",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/broadcast",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "broadcast"
          ]
        },
        "description": "Tool to delete a specific broadcast. use when you need to permanently remove a broadcast by id (after confirming the id). example prompt: \"delete broadcast with id 123\"",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_delete_custom_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/custom/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "custom",
            "field"
          ]
        },
        "description": "Tool to delete a specific custom field. use after confirming the custom field id is correct. deletes the field permanently.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_delete_subscriber",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/subscriber",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "subscriber"
          ]
        },
        "description": "Tool to delete (unsubscribe) a subscriber by id. use when you need to remove a subscriber from all sequences and forms after confirming the subscriber exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_delete_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tag"
          ]
        },
        "description": "Tool to delete a tag by id. use when you need to remove obsolete or incorrect tags after confirming the tag exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_delete_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "webhook"
          ]
        },
        "description": "Tool to delete a webhook by id. use when you want to permanently remove a webhook after confirming its id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_get_account",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account"
          ]
        },
        "description": "Tool to retrieve current account information. use after validating api key to fetch account id, plan type, primary email, and timezone details.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_get_account_colors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/colors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "colors"
          ]
        },
        "description": "Tool to retrieve list of colors associated with the account. use after confirming authentication to fetch account-specific color palette.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_get_broadcast",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/broadcast",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "broadcast"
          ]
        },
        "description": "Tool to retrieve details of a specific broadcast by id. use when you have a valid broadcast id and need its metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_get_broadcast_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/broadcast/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "broadcast",
            "stats"
          ]
        },
        "description": "Tool to retrieve statistics for a specific broadcast by id. use after a broadcast has been sent to monitor performance.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_get_creator_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/creator/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "creator",
            "profile"
          ]
        },
        "description": "Tool to retrieve the creator profile information for the account. use when you need creator metadata (bio, avatar, social links) before publishing or customizing content.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_get_email_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/email/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "email",
            "stats"
          ]
        },
        "description": "Tool to retrieve email statistics for the account. use after confirming authentication to fetch metrics on emails (sent, opened, clicked) over the last 90 days.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_broadcasts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/broadcasts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "broadcasts"
          ]
        },
        "description": "Tool to retrieve a paginated list of all broadcasts. use when you need to enumerate or review broadcast summaries with cursor-based pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"include_total_count\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_custom_fields",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/custom/fields",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "custom",
            "fields"
          ]
        },
        "description": "Tool to retrieve a paginated list of custom fields. use after confirming you need to enumerate or inspect all custom fields with cursor-based pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"include_total_count\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_forms",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/forms",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "forms"
          ]
        },
        "description": "Tool to list all forms. use when you need to fetch forms with optional filters and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"after\": \"\",\n  \"before\": \"\",\n  \"status\": \"\",\n  \"per_page\": 0,\n  \"include_total_count\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_segments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/segments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "segments"
          ]
        },
        "description": "Tool to retrieve a paginated list of segments. use when you need to enumerate segments with cursor-based pagination for further processing or display.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"include_total_count\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_sequences",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sequences",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sequences"
          ]
        },
        "description": "Tool to retrieve a paginated list of all sequences. use when you need to enumerate sequences with pagination for further processing or display.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"before\": \"\",\n  \"per_page\": 0,\n  \"include_total_count\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_subscribers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/subscribers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "subscribers"
          ]
        },
        "description": "Tool to retrieve a list of subscribers. use when you need to fetch subscriber records with optional filtering, sorting, and pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"before\": \"\",\n  \"status\": \"\",\n  \"per_page\": 0,\n  \"sort_field\": \"\",\n  \"sort_order\": \"\",\n  \"created_after\": \"\",\n  \"email_address\": \"\",\n  \"updated_after\": \"\",\n  \"created_before\": \"\",\n  \"updated_before\": \"\",\n  \"include_total_count\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_subscribers_for_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/subscribers/for/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "subscribers",
            "for",
            "form"
          ]
        },
        "description": "Tool to retrieve subscribers for a specific form by id. use when you need to page or filter subscribers of a form.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"before\": \"\",\n  \"status\": \"\",\n  \"form_id\": 0,\n  \"per_page\": 0,\n  \"added_after\": \"\",\n  \"added_before\": \"\",\n  \"created_after\": \"\",\n  \"created_before\": \"\",\n  \"include_total_count\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_tag_subscribers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tag/subscribers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tag",
            "subscribers"
          ]
        },
        "description": "Tool to retrieve subscribers for a specific tag. use after confirming the tag id when you need to list subscribers associated with a tag.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"before\": \"\",\n  \"status\": \"\",\n  \"tag_id\": 0,\n  \"per_page\": 0,\n  \"tagged_after\": \"\",\n  \"created_after\": \"\",\n  \"tagged_before\": \"\",\n  \"created_before\": \"\",\n  \"include_total_count\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "Tool to retrieve a list of all tags. use when you need a complete inventory of tags for the kit account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_tag_subscriber",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/tag/subscriber",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tag",
            "subscriber"
          ]
        },
        "description": "Tool to associate a subscriber with a specific tag by id. use after confirming tag and subscriber ids when tagging a subscriber.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_id\": 0,\n  \"subscriber_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_tag_subscriber_by_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/tag/subscriber/by/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tag",
            "subscriber",
            "by",
            "email"
          ]
        },
        "description": "Tool to associate a subscriber with a tag using an email address. use when you have a tag id and subscriber email ready. use after confirming both resources exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_id\": 0,\n  \"email_address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_update_account_colors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/account/colors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "account",
            "colors"
          ]
        },
        "description": "Tool to update the list of colors for the account. use when customizing your kit account's color palette for broadcasts and templates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"colors\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_update_custom_field",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/custom/field",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "custom",
            "field"
          ]
        },
        "description": "Tool to update a custom field's label. use after listing or retrieving custom fields and confirming the field id to rename.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"label\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "kit_update_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "tag"
          ]
        },
        "description": "Tool to update a tag's name by id. use after retrieving tag id and confirming the new name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}