Camtasia · Capability

Camtasia Project Management API — Projects

Camtasia Project Management API — Projects. 5 operations. Lead operation: Camtasia List projects. Self-contained Naftiko capability covering one Camtasia business surface.

Run with Naftiko CamtasiaProjects

What You Can Do

GET
Listprojects — Camtasia List projects
/v1/projects
POST
Createproject — Camtasia Create a project
/v1/projects
GET
Getproject — Camtasia Get a project
/v1/projects/{projectid}
PUT
Updateproject — Camtasia Update a project
/v1/projects/{projectid}
DELETE
Deleteproject — Camtasia Delete a project
/v1/projects/{projectid}

MCP Tools

camtasia-list-projects

Camtasia List projects

read-only idempotent
camtasia-create-project

Camtasia Create a project

camtasia-get-project

Camtasia Get a project

read-only idempotent
camtasia-update-project

Camtasia Update a project

idempotent
camtasia-delete-project

Camtasia Delete a project

idempotent

Capability Spec

project-management-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Camtasia Project Management API — Projects
  description: 'Camtasia Project Management API — Projects. 5 operations. Lead operation: Camtasia List projects. Self-contained
    Naftiko capability covering one Camtasia business surface.'
  tags:
  - Camtasia
  - Projects
  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-projects
    baseUri: https://api.techsmith.com/camtasia/v1
    description: Camtasia Project Management API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: projects
      path: /projects
      operations:
      - name: listprojects
        method: GET
        description: Camtasia List projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter by project status
        - name: sort
          in: query
          type: string
          description: Sort order for results
      - name: createproject
        method: POST
        description: Camtasia Create a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: projects-projectId
      path: /projects/{projectId}
      operations:
      - name: getproject
        method: GET
        description: Camtasia Get a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateproject
        method: PUT
        description: Camtasia Update a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteproject
        method: DELETE
        description: Camtasia Delete a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CAMTASIA_API_KEY}}'
  exposes:
  - type: rest
    namespace: project-management-projects-rest
    port: 8080
    description: REST adapter for Camtasia Project Management API — Projects. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/projects
      name: projects
      description: REST surface for projects.
      operations:
      - method: GET
        name: listprojects
        description: Camtasia List projects
        call: project-management-projects.listprojects
        with:
          status: rest.status
          sort: rest.sort
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Camtasia Create a project
        call: project-management-projects.createproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{projectid}
      name: projects-projectid
      description: REST surface for projects-projectId.
      operations:
      - method: GET
        name: getproject
        description: Camtasia Get a project
        call: project-management-projects.getproject
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateproject
        description: Camtasia Update a project
        call: project-management-projects.updateproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproject
        description: Camtasia Delete a project
        call: project-management-projects.deleteproject
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: project-management-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Camtasia Project Management API — Projects. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: camtasia-list-projects
      description: Camtasia List projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: project-management-projects.listprojects
      with:
        status: tools.status
        sort: tools.sort
      outputParameters:
      - type: object
        mapping: $.
    - name: camtasia-create-project
      description: Camtasia Create a project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: project-management-projects.createproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: camtasia-get-project
      description: Camtasia Get a project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: project-management-projects.getproject
      outputParameters:
      - type: object
        mapping: $.
    - name: camtasia-update-project
      description: Camtasia Update a project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: project-management-projects.updateproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: camtasia-delete-project
      description: Camtasia Delete a project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: project-management-projects.deleteproject
      outputParameters:
      - type: object
        mapping: $.