{
  "info": {
    "name": "Cronfree Time Scheduler — mcp.ai",
    "description": "REST API for the Cronfree Time Scheduler 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/cronfree_time_scheduler",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cronfree_time_scheduler_create_recurring_webhook_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/recurring/webhook/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "recurring",
            "webhook",
            "schedule"
          ]
        },
        "description": "Create a Cronfree schedule that repeatedly POSTs to a webhook URL at times selected by weekday, month, month-day, hour, minute, and IANA timezone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hours\": \"\",\n  \"months\": \"\",\n  \"minutes\": \"\",\n  \"timezone\": \"\",\n  \"weekdays\": \"\",\n  \"month_days\": \"\",\n  \"webhook_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronfree_time_scheduler_remove_recurring_webhook_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/remove/recurring/webhook/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "remove",
            "recurring",
            "webhook",
            "schedule"
          ]
        },
        "description": "Remove the Cronfree recurring schedule associated with a webhook URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"webhook_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}