Autodesk · Capability

Autodesk Sustainability Data API — Datasets

Autodesk Sustainability Data API — Datasets. 2 operations. Lead operation: Autodesk List Datasets. Self-contained Naftiko capability covering one Autodesk business surface.

Run with Naftiko AutodeskDatasets

What You Can Do

GET
Getdatasets — Autodesk List Datasets
/v1/sustainability/v3/datasets
GET
Getdataset — Autodesk Get Dataset
/v1/sustainability/v3/datasets/{datasetid}

MCP Tools

autodesk-list-datasets

Autodesk List Datasets

read-only idempotent
autodesk-get-dataset

Autodesk Get Dataset

read-only idempotent

Capability Spec

sustainability-data-datasets.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Autodesk Sustainability Data API — Datasets
  description: 'Autodesk Sustainability Data API — Datasets. 2 operations. Lead operation: Autodesk List Datasets. Self-contained
    Naftiko capability covering one Autodesk business surface.'
  tags:
  - Autodesk
  - Datasets
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTODESK_API_KEY: AUTODESK_API_KEY
capability:
  consumes:
  - type: http
    namespace: sustainability-data-datasets
    baseUri: https://developer.api.autodesk.com
    description: Autodesk Sustainability Data API — Datasets business capability. Self-contained, no shared references.
    resources:
    - name: sustainability-v3-datasets
      path: /sustainability/v3/datasets
      operations:
      - name: getdatasets
        method: GET
        description: Autodesk List Datasets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page[offset]
          in: query
          type: integer
        - name: page[limit]
          in: query
          type: integer
        - name: filter[type]
          in: query
          type: string
          description: Filter by dataset type.
    - name: sustainability-v3-datasets-datasetId
      path: /sustainability/v3/datasets/{datasetId}
      operations:
      - name: getdataset
        method: GET
        description: Autodesk Get Dataset
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: datasetId
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.AUTODESK_API_KEY}}'
  exposes:
  - type: rest
    namespace: sustainability-data-datasets-rest
    port: 8080
    description: REST adapter for Autodesk Sustainability Data API — Datasets. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/sustainability/v3/datasets
      name: sustainability-v3-datasets
      description: REST surface for sustainability-v3-datasets.
      operations:
      - method: GET
        name: getdatasets
        description: Autodesk List Datasets
        call: sustainability-data-datasets.getdatasets
        with:
          page[offset]: rest.page[offset]
          page[limit]: rest.page[limit]
          filter[type]: rest.filter[type]
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sustainability/v3/datasets/{datasetid}
      name: sustainability-v3-datasets-datasetid
      description: REST surface for sustainability-v3-datasets-datasetId.
      operations:
      - method: GET
        name: getdataset
        description: Autodesk Get Dataset
        call: sustainability-data-datasets.getdataset
        with:
          datasetId: rest.datasetId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sustainability-data-datasets-mcp
    port: 9090
    transport: http
    description: MCP adapter for Autodesk Sustainability Data API — Datasets. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: autodesk-list-datasets
      description: Autodesk List Datasets
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sustainability-data-datasets.getdatasets
      with:
        page[offset]: tools.page[offset]
        page[limit]: tools.page[limit]
        filter[type]: tools.filter[type]
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-get-dataset
      description: Autodesk Get Dataset
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sustainability-data-datasets.getdataset
      with:
        datasetId: tools.datasetId
      outputParameters:
      - type: object
        mapping: $.