Academy Software Foundation - OpenCue API — Jobs

Academy Software Foundation - OpenCue API — Jobs. 3 operations. Lead operation: Academy Software Foundation Get Job. Self-contained Naftiko capability covering one Academy Software Foundation business surface.

Run with Naftiko Academy Software FoundationJobs

What You Can Do

GET
Getjob — Academy Software Foundation Get Job
/v1/api/job/{job-id}
DELETE
Killjob — Academy Software Foundation Kill Job
/v1/api/job/{job-id}
GET
Listjobs — Academy Software Foundation List Jobs for Show
/v1/api/show/{show-id}/job

MCP Tools

academy-software-foundation-get-job

Academy Software Foundation Get Job

read-only idempotent
academy-software-foundation-kill-job

Academy Software Foundation Kill Job

idempotent
academy-software-foundation-list-jobs

Academy Software Foundation List Jobs for Show

read-only idempotent

Capability Spec

opencue-jobs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Academy Software Foundation - OpenCue API — Jobs
  description: 'Academy Software Foundation - OpenCue API — Jobs. 3 operations. Lead operation: Academy Software Foundation
    Get Job. Self-contained Naftiko capability covering one Academy Software Foundation business surface.'
  tags:
  - Academy Software Foundation
  - Jobs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ACADEMY_SOFTWARE_FOUNDATION_API_KEY: ACADEMY_SOFTWARE_FOUNDATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: opencue-jobs
    baseUri: http://localhost:8080
    description: Academy Software Foundation - OpenCue API — Jobs business capability. Self-contained, no shared references.
    resources:
    - name: api-job-job_id
      path: /api/job/{job_id}
      operations:
      - name: getjob
        method: GET
        description: Academy Software Foundation Get Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: job_id
          in: path
          type: string
          description: The job identifier
          required: true
      - name: killjob
        method: DELETE
        description: Academy Software Foundation Kill Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: job_id
          in: path
          type: string
          description: The job identifier to kill
          required: true
    - name: api-show-show_id-job
      path: /api/show/{show_id}/job
      operations:
      - name: listjobs
        method: GET
        description: Academy Software Foundation List Jobs for Show
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: show_id
          in: path
          type: string
          description: The show identifier
          required: true
        - name: state
          in: query
          type: string
          description: Filter jobs by state (PENDING, RUNNING, FINISHED, PAUSED)
  exposes:
  - type: rest
    namespace: opencue-jobs-rest
    port: 8080
    description: REST adapter for Academy Software Foundation - OpenCue API — Jobs. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/job/{job-id}
      name: api-job-job-id
      description: REST surface for api-job-job_id.
      operations:
      - method: GET
        name: getjob
        description: Academy Software Foundation Get Job
        call: opencue-jobs.getjob
        with:
          job_id: rest.job_id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: killjob
        description: Academy Software Foundation Kill Job
        call: opencue-jobs.killjob
        with:
          job_id: rest.job_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/show/{show-id}/job
      name: api-show-show-id-job
      description: REST surface for api-show-show_id-job.
      operations:
      - method: GET
        name: listjobs
        description: Academy Software Foundation List Jobs for Show
        call: opencue-jobs.listjobs
        with:
          show_id: rest.show_id
          state: rest.state
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: opencue-jobs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Academy Software Foundation - OpenCue API — Jobs. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: academy-software-foundation-get-job
      description: Academy Software Foundation Get Job
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: opencue-jobs.getjob
      with:
        job_id: tools.job_id
      outputParameters:
      - type: object
        mapping: $.
    - name: academy-software-foundation-kill-job
      description: Academy Software Foundation Kill Job
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: opencue-jobs.killjob
      with:
        job_id: tools.job_id
      outputParameters:
      - type: object
        mapping: $.
    - name: academy-software-foundation-list-jobs
      description: Academy Software Foundation List Jobs for Show
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: opencue-jobs.listjobs
      with:
        show_id: tools.show_id
        state: tools.state
      outputParameters:
      - type: object
        mapping: $.