Autodesk · Capability

Autodesk Design Automation API — Engines

Autodesk Design Automation API — Engines. 2 operations. Lead operation: Autodesk List Engines. Self-contained Naftiko capability covering one Autodesk business surface.

Run with Naftiko AutodeskEngines

What You Can Do

GET
Getengines — Autodesk List Engines
/v1/da/us-east/v3/engines
GET
Getengine — Autodesk Get Engine
/v1/da/us-east/v3/engines/{id}

MCP Tools

autodesk-list-engines

Autodesk List Engines

read-only idempotent
autodesk-get-engine

Autodesk Get Engine

read-only idempotent

Capability Spec

design-automation-engines.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Autodesk Design Automation API — Engines
  description: 'Autodesk Design Automation API — Engines. 2 operations. Lead operation: Autodesk List Engines. Self-contained
    Naftiko capability covering one Autodesk business surface.'
  tags:
  - Autodesk
  - Engines
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTODESK_API_KEY: AUTODESK_API_KEY
capability:
  consumes:
  - type: http
    namespace: design-automation-engines
    baseUri: https://developer.api.autodesk.com
    description: Autodesk Design Automation API — Engines business capability. Self-contained, no shared references.
    resources:
    - name: da-us-east-v3-engines
      path: /da/us-east/v3/engines
      operations:
      - name: getengines
        method: GET
        description: Autodesk List Engines
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: string
          description: Page token for pagination.
    - name: da-us-east-v3-engines-id
      path: /da/us-east/v3/engines/{id}
      operations:
      - name: getengine
        method: GET
        description: Autodesk Get Engine
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The fully qualified engine ID (e.g., Autodesk.AutoCAD+24_1).
          required: true
    authentication:
      type: bearer
      token: '{{env.AUTODESK_API_KEY}}'
  exposes:
  - type: rest
    namespace: design-automation-engines-rest
    port: 8080
    description: REST adapter for Autodesk Design Automation API — Engines. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/da/us-east/v3/engines
      name: da-us-east-v3-engines
      description: REST surface for da-us-east-v3-engines.
      operations:
      - method: GET
        name: getengines
        description: Autodesk List Engines
        call: design-automation-engines.getengines
        with:
          page: rest.page
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/da/us-east/v3/engines/{id}
      name: da-us-east-v3-engines-id
      description: REST surface for da-us-east-v3-engines-id.
      operations:
      - method: GET
        name: getengine
        description: Autodesk Get Engine
        call: design-automation-engines.getengine
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: design-automation-engines-mcp
    port: 9090
    transport: http
    description: MCP adapter for Autodesk Design Automation API — Engines. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: autodesk-list-engines
      description: Autodesk List Engines
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: design-automation-engines.getengines
      with:
        page: tools.page
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-get-engine
      description: Autodesk Get Engine
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: design-automation-engines.getengine
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.