QuantCDN · Capability

QuantCDN API — CrawlerSchedules

QuantCDN API — CrawlerSchedules. 5 operations. Lead operation: List schedules for a crawler. Self-contained Naftiko capability covering one Quantcdn business surface.

Run with Naftiko QuantcdnCrawlerSchedules

What You Can Do

GET
Crawlerscheduleslist — List schedules for a crawler
/v1/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules
POST
Crawlerschedulesadd — Add a new schedule
/v1/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules
DELETE
Crawlerschedulesdelete — Delete a schedule
/v1/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules/{crawler-schedule}
GET
Crawlerschedulesshow — Show a specific schedule
/v1/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules/{crawler-schedule}
PATCH
Crawlerschedulesedit — Edit a schedule
/v1/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules/{crawler-schedule}

MCP Tools

list-schedules-crawler

List schedules for a crawler

read-only idempotent
add-new-schedule

Add a new schedule

delete-schedule

Delete a schedule

idempotent
show-specific-schedule

Show a specific schedule

read-only idempotent
edit-schedule

Edit a schedule

idempotent

Capability Spec

quantcdn-crawlerschedules.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: QuantCDN API — CrawlerSchedules
  description: 'QuantCDN API — CrawlerSchedules. 5 operations. Lead operation: List schedules for a crawler. Self-contained
    Naftiko capability covering one Quantcdn business surface.'
  tags:
  - Quantcdn
  - CrawlerSchedules
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QUANTCDN_API_KEY: QUANTCDN_API_KEY
capability:
  consumes:
  - type: http
    namespace: quantcdn-crawlerschedules
    baseUri: https://dashboard.quantcdn.io
    description: QuantCDN API — CrawlerSchedules business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-organizations-organization-projects-project-crawlers-crawler-schedules
      path: /api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules
      operations:
      - name: crawlerscheduleslist
        method: GET
        description: List schedules for a crawler
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organization
          in: path
          type: string
          required: true
        - name: project
          in: path
          type: string
          required: true
        - name: crawler
          in: path
          type: string
          required: true
      - name: crawlerschedulesadd
        method: POST
        description: Add a new schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organization
          in: path
          type: string
          description: Organization identifier
          required: true
        - name: project
          in: path
          type: string
          description: Project identifier
          required: true
        - name: crawler
          in: path
          type: string
          description: Crawler identifier
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v2-organizations-organization-projects-project-crawlers-crawler-schedules-cr
      path: /api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules/{crawler_schedule}
      operations:
      - name: crawlerschedulesdelete
        method: DELETE
        description: Delete a schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organization
          in: path
          type: string
          description: Organization identifier
          required: true
        - name: project
          in: path
          type: string
          description: Project identifier
          required: true
        - name: crawler
          in: path
          type: string
          description: Crawler identifier
          required: true
        - name: crawler_schedule
          in: path
          type: string
          description: Crawler schedule identifier
          required: true
      - name: crawlerschedulesshow
        method: GET
        description: Show a specific schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organization
          in: path
          type: string
          description: Organization identifier
          required: true
        - name: project
          in: path
          type: string
          description: Project identifier
          required: true
        - name: crawler
          in: path
          type: string
          description: Crawler identifier
          required: true
        - name: crawler_schedule
          in: path
          type: string
          description: Crawler schedule identifier
          required: true
      - name: crawlerschedulesedit
        method: PATCH
        description: Edit a schedule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: organization
          in: path
          type: string
          description: Organization identifier
          required: true
        - name: project
          in: path
          type: string
          description: Project identifier
          required: true
        - name: crawler
          in: path
          type: string
          description: Crawler identifier
          required: true
        - name: crawler_schedule
          in: path
          type: string
          description: Crawler schedule identifier
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.QUANTCDN_API_KEY}}'
  exposes:
  - type: rest
    namespace: quantcdn-crawlerschedules-rest
    port: 8080
    description: REST adapter for QuantCDN API — CrawlerSchedules. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules
      name: api-v2-organizations-organization-projects-project-crawlers-crawler-schedules
      description: REST surface for api-v2-organizations-organization-projects-project-crawlers-crawler-schedules.
      operations:
      - method: GET
        name: crawlerscheduleslist
        description: List schedules for a crawler
        call: quantcdn-crawlerschedules.crawlerscheduleslist
        with:
          organization: rest.organization
          project: rest.project
          crawler: rest.crawler
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: crawlerschedulesadd
        description: Add a new schedule
        call: quantcdn-crawlerschedules.crawlerschedulesadd
        with:
          organization: rest.organization
          project: rest.project
          crawler: rest.crawler
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/organizations/{organization}/projects/{project}/crawlers/{crawler}/schedules/{crawler-schedule}
      name: api-v2-organizations-organization-projects-project-crawlers-crawler-schedules-cr
      description: REST surface for api-v2-organizations-organization-projects-project-crawlers-crawler-schedules-cr.
      operations:
      - method: DELETE
        name: crawlerschedulesdelete
        description: Delete a schedule
        call: quantcdn-crawlerschedules.crawlerschedulesdelete
        with:
          organization: rest.organization
          project: rest.project
          crawler: rest.crawler
          crawler_schedule: rest.crawler_schedule
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: crawlerschedulesshow
        description: Show a specific schedule
        call: quantcdn-crawlerschedules.crawlerschedulesshow
        with:
          organization: rest.organization
          project: rest.project
          crawler: rest.crawler
          crawler_schedule: rest.crawler_schedule
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: crawlerschedulesedit
        description: Edit a schedule
        call: quantcdn-crawlerschedules.crawlerschedulesedit
        with:
          organization: rest.organization
          project: rest.project
          crawler: rest.crawler
          crawler_schedule: rest.crawler_schedule
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: quantcdn-crawlerschedules-mcp
    port: 9090
    transport: http
    description: MCP adapter for QuantCDN API — CrawlerSchedules. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-schedules-crawler
      description: List schedules for a crawler
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: quantcdn-crawlerschedules.crawlerscheduleslist
      with:
        organization: tools.organization
        project: tools.project
        crawler: tools.crawler
      outputParameters:
      - type: object
        mapping: $.
    - name: add-new-schedule
      description: Add a new schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: quantcdn-crawlerschedules.crawlerschedulesadd
      with:
        organization: tools.organization
        project: tools.project
        crawler: tools.crawler
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-schedule
      description: Delete a schedule
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: quantcdn-crawlerschedules.crawlerschedulesdelete
      with:
        organization: tools.organization
        project: tools.project
        crawler: tools.crawler
        crawler_schedule: tools.crawler_schedule
      outputParameters:
      - type: object
        mapping: $.
    - name: show-specific-schedule
      description: Show a specific schedule
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: quantcdn-crawlerschedules.crawlerschedulesshow
      with:
        organization: tools.organization
        project: tools.project
        crawler: tools.crawler
        crawler_schedule: tools.crawler_schedule
      outputParameters:
      - type: object
        mapping: $.
    - name: edit-schedule
      description: Edit a schedule
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: quantcdn-crawlerschedules.crawlerschedulesedit
      with:
        organization: tools.organization
        project: tools.project
        crawler: tools.crawler
        crawler_schedule: tools.crawler_schedule
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.