Asana · Capability

Asana Attachments API — Attachments

Asana Attachments API — Attachments. 4 operations. Lead operation: Asana Get attachments from an object. Self-contained Naftiko capability covering one Asana business surface.

Run with Naftiko AsanaAttachments

What You Can Do

GET
Getattachmentsforobject — Asana Get attachments from an object
/v1/attachments
POST
Createattachmentforobject — Asana Upload an attachment
/v1/attachments
GET
Getattachment — Asana Get an attachment
/v1/attachments/{attachment-gid}
DELETE
Deleteattachment — Asana Delete an attachment
/v1/attachments/{attachment-gid}

MCP Tools

asana-get-attachments-object

Asana Get attachments from an object

read-only idempotent
asana-upload-attachment

Asana Upload an attachment

asana-get-attachment

Asana Get an attachment

read-only idempotent
asana-delete-attachment

Asana Delete an attachment

idempotent

Capability Spec

attachments-attachments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Asana Attachments API — Attachments
  description: 'Asana Attachments API — Attachments. 4 operations. Lead operation: Asana Get attachments from an object. Self-contained
    Naftiko capability covering one Asana business surface.'
  tags:
  - Asana
  - Attachments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ASANA_API_KEY: ASANA_API_KEY
capability:
  consumes:
  - type: http
    namespace: attachments-attachments
    baseUri: https://app.asana.com/api/1.0
    description: Asana Attachments API — Attachments business capability. Self-contained, no shared references.
    resources:
    - name: attachments
      path: /attachments
      operations:
      - name: getattachmentsforobject
        method: GET
        description: Asana Get attachments from an object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: parent
          in: query
          type: string
          description: Globally unique identifier for object to fetch attachments from.
          required: true
        - name: limit
          in: query
          type: integer
        - name: offset
          in: query
          type: string
      - name: createattachmentforobject
        method: POST
        description: Asana Upload an attachment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: attachments-attachment_gid
      path: /attachments/{attachment_gid}
      operations:
      - name: getattachment
        method: GET
        description: Asana Get an attachment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: attachment_gid
          in: path
          type: string
          description: Globally unique identifier for the attachment.
          required: true
        - name: opt_fields
          in: query
          type: array
      - name: deleteattachment
        method: DELETE
        description: Asana Delete an attachment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: attachment_gid
          in: path
          type: string
          description: Globally unique identifier for the attachment.
          required: true
    authentication:
      type: bearer
      token: '{{env.ASANA_API_KEY}}'
  exposes:
  - type: rest
    namespace: attachments-attachments-rest
    port: 8080
    description: REST adapter for Asana Attachments API — Attachments. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/attachments
      name: attachments
      description: REST surface for attachments.
      operations:
      - method: GET
        name: getattachmentsforobject
        description: Asana Get attachments from an object
        call: attachments-attachments.getattachmentsforobject
        with:
          parent: rest.parent
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createattachmentforobject
        description: Asana Upload an attachment
        call: attachments-attachments.createattachmentforobject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/attachments/{attachment-gid}
      name: attachments-attachment-gid
      description: REST surface for attachments-attachment_gid.
      operations:
      - method: GET
        name: getattachment
        description: Asana Get an attachment
        call: attachments-attachments.getattachment
        with:
          attachment_gid: rest.attachment_gid
          opt_fields: rest.opt_fields
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteattachment
        description: Asana Delete an attachment
        call: attachments-attachments.deleteattachment
        with:
          attachment_gid: rest.attachment_gid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: attachments-attachments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Asana Attachments API — Attachments. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: asana-get-attachments-object
      description: Asana Get attachments from an object
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: attachments-attachments.getattachmentsforobject
      with:
        parent: tools.parent
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: asana-upload-attachment
      description: Asana Upload an attachment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: attachments-attachments.createattachmentforobject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: asana-get-attachment
      description: Asana Get an attachment
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: attachments-attachments.getattachment
      with:
        attachment_gid: tools.attachment_gid
        opt_fields: tools.opt_fields
      outputParameters:
      - type: object
        mapping: $.
    - name: asana-delete-attachment
      description: Asana Delete an attachment
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: attachments-attachments.deleteattachment
      with:
        attachment_gid: tools.attachment_gid
      outputParameters:
      - type: object
        mapping: $.