{
  "info": {
    "name": "Cronly — mcp.ai",
    "description": "REST API for the Cronly 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/cronly",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "cronly_create_certificate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/certificate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "certificate"
          ]
        },
        "description": "Create an SSL/TLS certificate-expiry monitor for a hostname and port.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"port\": 0,\n  \"hostname\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_create_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "monitor"
          ]
        },
        "description": "Create a cron-job heartbeat monitor and return its ID and sensitive pulse token.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"duration\": 0,\n  \"schedule\": \"\",\n  \"timezone\": \"\",\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_create_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project"
          ]
        },
        "description": "Create a project for organizing Cronly monitors and certificate checks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_delete_certificate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/certificate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "certificate"
          ]
        },
        "description": "Permanently delete an SSL/TLS certificate monitor by numeric ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"certificate_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_delete_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "monitor"
          ]
        },
        "description": "Permanently delete a cron-job monitor by numeric ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"monitor_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_delete_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project"
          ]
        },
        "description": "Permanently delete a Cronly project by numeric ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_get_company",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/company",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "company"
          ]
        },
        "description": "Return safe organization, timezone, and subscription-summary fields for the connected Cronly account without exposing billing or integration secrets.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_get_resource",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/resource",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "resource"
          ]
        },
        "description": "Get one monitor, project, certificate, user, server, or backup by its resource identity.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"username\": \"\",\n  \"resource_id\": \"\",\n  \"resource_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_list_resources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/resources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "resources"
          ]
        },
        "description": "List notifications, monitors, projects, certificates, users, servers, or backups. Notifications return one page with a continuation cursor; other resource types return their complete arrays.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"per_page\": 0,\n  \"next_cursor\": \"\",\n  \"resource_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "cronly_pulse_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/pulse/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "pulse",
            "monitor"
          ]
        },
        "description": "Record a successful heartbeat for a monitor using its sensitive pulse token. This changes monitor run state even though Cronly exposes it as GET.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pulse_token\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}