{
  "info": {
    "name": "Zylvie — mcp.ai",
    "description": "REST API for the Zylvie 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/zylvie",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "zylvie_create_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "product"
          ]
        },
        "description": "Tool to create a new product. Use when you need to add a product with detailed custom options in Zylvie platform.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"tags\": \"\",\n  \"price\": \"\",\n  \"title\": \"\",\n  \"display\": \"\",\n  \"summary\": \"\",\n  \"currency\": \"\",\n  \"interval\": \"\",\n  \"subtitle\": \"\",\n  \"categories\": \"\",\n  \"description\": \"\",\n  \"productfiles\": \"\",\n  \"shipping_fee\": \"\",\n  \"pricing_model\": \"\",\n  \"productimages\": \"\",\n  \"shipping_type\": \"\",\n  \"interval_count\": 0,\n  \"trial_period_days\": 0,\n  \"collect_address_and_phone\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zylvie_get_authenticating_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/authenticating/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "authenticating",
            "user"
          ]
        },
        "description": "Tool to retrieve information about the currently authenticated user. Use when you have a valid Bearer token and need to fetch the authenticated user's profile.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zylvie_subscribe_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/subscribe/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "subscribe",
            "webhook"
          ]
        },
        "description": "Tool to subscribe to a webhook event by creating a workflow object. Use when you need to set up webhook notifications for sale, lead, affiliate, subscription, or cancel events. If a workflow with the ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"trigger\": \"\",\n  \"webhook_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zylvie_unsubscribe_webhook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/unsubscribe/webhook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "unsubscribe",
            "webhook"
          ]
        },
        "description": "Tool to unsubscribe from a webhook by deleting the workflow object associated with the specified webhook URL. Use after confirming the webhook URL to remove.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}