Autodesk · Capability

Autodesk Parameters API — Groups

Autodesk Parameters API — Groups. 2 operations. Lead operation: Autodesk List Groups. Self-contained Naftiko capability covering one Autodesk business surface.

Run with Naftiko AutodeskGroups

What You Can Do

GET
Getgroups — Autodesk List Groups
/v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/groups
POST
Creategroup — Autodesk Create Group
/v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/groups

MCP Tools

autodesk-list-groups

Autodesk List Groups

read-only idempotent
autodesk-create-group

Autodesk Create Group

Capability Spec

parameters-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Autodesk Parameters API — Groups
  description: 'Autodesk Parameters API — Groups. 2 operations. Lead operation: Autodesk List Groups. Self-contained Naftiko
    capability covering one Autodesk business surface.'
  tags:
  - Autodesk
  - Groups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AUTODESK_API_KEY: AUTODESK_API_KEY
capability:
  consumes:
  - type: http
    namespace: parameters-groups
    baseUri: https://developer.api.autodesk.com
    description: Autodesk Parameters API — Groups business capability. Self-contained, no shared references.
    resources:
    - name: parameters-v1-accounts-accountId-collections-collectionId-groups
      path: /parameters/v1/accounts/{accountId}/collections/{collectionId}/groups
      operations:
      - name: getgroups
        method: GET
        description: Autodesk List Groups
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: collectionId
          in: path
          type: string
          required: true
      - name: creategroup
        method: POST
        description: Autodesk Create Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: accountId
          in: path
          type: string
          required: true
        - name: collectionId
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.AUTODESK_API_KEY}}'
  exposes:
  - type: rest
    namespace: parameters-groups-rest
    port: 8080
    description: REST adapter for Autodesk Parameters API — Groups. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/parameters/v1/accounts/{accountid}/collections/{collectionid}/groups
      name: parameters-v1-accounts-accountid-collections-collectionid-groups
      description: REST surface for parameters-v1-accounts-accountId-collections-collectionId-groups.
      operations:
      - method: GET
        name: getgroups
        description: Autodesk List Groups
        call: parameters-groups.getgroups
        with:
          accountId: rest.accountId
          collectionId: rest.collectionId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: creategroup
        description: Autodesk Create Group
        call: parameters-groups.creategroup
        with:
          accountId: rest.accountId
          collectionId: rest.collectionId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: parameters-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for Autodesk Parameters API — Groups. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: autodesk-list-groups
      description: Autodesk List Groups
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: parameters-groups.getgroups
      with:
        accountId: tools.accountId
        collectionId: tools.collectionId
      outputParameters:
      - type: object
        mapping: $.
    - name: autodesk-create-group
      description: Autodesk Create Group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: parameters-groups.creategroup
      with:
        accountId: tools.accountId
        collectionId: tools.collectionId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.