Camtasia · Capability

Camtasia Project Management API — Recordings

Camtasia Project Management API — Recordings. 4 operations. Lead operation: Camtasia List recordings. Self-contained Naftiko capability covering one Camtasia business surface.

Run with Naftiko CamtasiaRecordings

What You Can Do

GET
Listrecordings — Camtasia List recordings
/v1/recordings
POST
Uploadrecording — Camtasia Upload a recording
/v1/recordings
GET
Getrecording — Camtasia Get a recording
/v1/recordings/{recordingid}
DELETE
Deleterecording — Camtasia Delete a recording
/v1/recordings/{recordingid}

MCP Tools

camtasia-list-recordings

Camtasia List recordings

read-only idempotent
camtasia-upload-recording

Camtasia Upload a recording

camtasia-get-recording

Camtasia Get a recording

read-only idempotent
camtasia-delete-recording

Camtasia Delete a recording

idempotent

Capability Spec

project-management-recordings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Camtasia Project Management API — Recordings
  description: 'Camtasia Project Management API — Recordings. 4 operations. Lead operation: Camtasia List recordings. Self-contained
    Naftiko capability covering one Camtasia business surface.'
  tags:
  - Camtasia
  - Recordings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CAMTASIA_API_KEY: CAMTASIA_API_KEY
capability:
  consumes:
  - type: http
    namespace: project-management-recordings
    baseUri: https://api.techsmith.com/camtasia/v1
    description: Camtasia Project Management API — Recordings business capability. Self-contained, no shared references.
    resources:
    - name: recordings
      path: /recordings
      operations:
      - name: listrecordings
        method: GET
        description: Camtasia List recordings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: uploadrecording
        method: POST
        description: Camtasia Upload a recording
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: recordings-recordingId
      path: /recordings/{recordingId}
      operations:
      - name: getrecording
        method: GET
        description: Camtasia Get a recording
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleterecording
        method: DELETE
        description: Camtasia Delete a recording
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CAMTASIA_API_KEY}}'
  exposes:
  - type: rest
    namespace: project-management-recordings-rest
    port: 8080
    description: REST adapter for Camtasia Project Management API — Recordings. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/recordings
      name: recordings
      description: REST surface for recordings.
      operations:
      - method: GET
        name: listrecordings
        description: Camtasia List recordings
        call: project-management-recordings.listrecordings
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: uploadrecording
        description: Camtasia Upload a recording
        call: project-management-recordings.uploadrecording
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/recordings/{recordingid}
      name: recordings-recordingid
      description: REST surface for recordings-recordingId.
      operations:
      - method: GET
        name: getrecording
        description: Camtasia Get a recording
        call: project-management-recordings.getrecording
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleterecording
        description: Camtasia Delete a recording
        call: project-management-recordings.deleterecording
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: project-management-recordings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Camtasia Project Management API — Recordings. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: camtasia-list-recordings
      description: Camtasia List recordings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: project-management-recordings.listrecordings
      outputParameters:
      - type: object
        mapping: $.
    - name: camtasia-upload-recording
      description: Camtasia Upload a recording
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: project-management-recordings.uploadrecording
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: camtasia-get-recording
      description: Camtasia Get a recording
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: project-management-recordings.getrecording
      outputParameters:
      - type: object
        mapping: $.
    - name: camtasia-delete-recording
      description: Camtasia Delete a recording
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: project-management-recordings.deleterecording
      outputParameters:
      - type: object
        mapping: $.