Asana · Capability

Asana — Organization Exports

Asana — Organization Exports. 2 operations. Lead operation: Asana Create an organization export request. Self-contained Naftiko capability covering one Asana business surface.

Run with Naftiko AsanaOrganization Exports

What You Can Do

POST
Createorganizationexport — Asana Create an organization export request
/v1/organization-exports
GET
Getorganizationexport — Asana Get details on an org export request
/v1/organization-exports/{organization-export-gid}

MCP Tools

asana-create-organization-export-request

Asana Create an organization export request

asana-get-details-org-export

Asana Get details on an org export request

read-only idempotent

Capability Spec

asana-organization-exports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Asana — Organization Exports
  description: 'Asana — Organization Exports. 2 operations. Lead operation: Asana Create an organization export request. Self-contained
    Naftiko capability covering one Asana business surface.'
  tags:
  - Asana
  - Organization Exports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ASANA_API_KEY: ASANA_API_KEY
capability:
  consumes:
  - type: http
    namespace: asana-organization-exports
    baseUri: https://app.asana.com/api/1.0
    description: Asana — Organization Exports business capability. Self-contained, no shared references.
    resources:
    - name: organization_exports
      path: /organization_exports
      operations:
      - name: createorganizationexport
        method: POST
        description: Asana Create an organization export request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: opt_fields
          in: query
          type: array
          description: This endpoint returns a compact resource, which excludes some properties by default. To include those
            optional properties, set this query parameter to a comma-s
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organization_exports-organization_export_gid
      path: /organization_exports/{organization_export_gid}
      operations:
      - name: getorganizationexport
        method: GET
        description: Asana Get details on an org export request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: opt_fields
          in: query
          type: array
          description: This endpoint returns a compact resource, which excludes some properties by default. To include those
            optional properties, set this query parameter to a comma-s
    authentication:
      type: bearer
      token: '{{env.ASANA_API_KEY}}'
  exposes:
  - type: rest
    namespace: asana-organization-exports-rest
    port: 8080
    description: REST adapter for Asana — Organization Exports. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/organization-exports
      name: organization-exports
      description: REST surface for organization_exports.
      operations:
      - method: POST
        name: createorganizationexport
        description: Asana Create an organization export request
        call: asana-organization-exports.createorganizationexport
        with:
          opt_fields: rest.opt_fields
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organization-exports/{organization-export-gid}
      name: organization-exports-organization-export-gid
      description: REST surface for organization_exports-organization_export_gid.
      operations:
      - method: GET
        name: getorganizationexport
        description: Asana Get details on an org export request
        call: asana-organization-exports.getorganizationexport
        with:
          opt_fields: rest.opt_fields
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: asana-organization-exports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Asana — Organization Exports. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: asana-create-organization-export-request
      description: Asana Create an organization export request
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: asana-organization-exports.createorganizationexport
      with:
        opt_fields: tools.opt_fields
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: asana-get-details-org-export
      description: Asana Get details on an org export request
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: asana-organization-exports.getorganizationexport
      with:
        opt_fields: tools.opt_fields
      outputParameters:
      - type: object
        mapping: $.