Asana · Capability

Asana — User Task Lists

Asana — User Task Lists. 2 operations. Lead operation: Asana Get a user task list. Self-contained Naftiko capability covering one Asana business surface.

Run with Naftiko AsanaUser Task Lists

What You Can Do

GET
Getusertasklist — Asana Get a user task list
/v1/user-task-lists/{user-task-list-gid}
GET
Getusertasklistforuser — Asana Get a user's task list
/v1/users/{user-gid}/user-task-list

MCP Tools

asana-get-user-task-list

Asana Get a user task list

read-only idempotent
asana-get-user-s-task-list

Asana Get a user's task list

read-only idempotent

Capability Spec

asana-user-task-lists.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Asana — User Task Lists
  description: 'Asana — User Task Lists. 2 operations. Lead operation: Asana Get a user task list. Self-contained Naftiko
    capability covering one Asana business surface.'
  tags:
  - Asana
  - User Task Lists
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ASANA_API_KEY: ASANA_API_KEY
capability:
  consumes:
  - type: http
    namespace: asana-user-task-lists
    baseUri: https://app.asana.com/api/1.0
    description: Asana — User Task Lists business capability. Self-contained, no shared references.
    resources:
    - name: user_task_lists-user_task_list_gid
      path: /user_task_lists/{user_task_list_gid}
      operations:
      - name: getusertasklist
        method: GET
        description: Asana Get a user task list
        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: users-user_gid-user_task_list
      path: /users/{user_gid}/user_task_list
      operations:
      - name: getusertasklistforuser
        method: GET
        description: Asana Get a user's task list
        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-user-task-lists-rest
    port: 8080
    description: REST adapter for Asana — User Task Lists. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/user-task-lists/{user-task-list-gid}
      name: user-task-lists-user-task-list-gid
      description: REST surface for user_task_lists-user_task_list_gid.
      operations:
      - method: GET
        name: getusertasklist
        description: Asana Get a user task list
        call: asana-user-task-lists.getusertasklist
        with:
          opt_fields: rest.opt_fields
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/users/{user-gid}/user-task-list
      name: users-user-gid-user-task-list
      description: REST surface for users-user_gid-user_task_list.
      operations:
      - method: GET
        name: getusertasklistforuser
        description: Asana Get a user's task list
        call: asana-user-task-lists.getusertasklistforuser
        with:
          opt_fields: rest.opt_fields
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: asana-user-task-lists-mcp
    port: 9090
    transport: http
    description: MCP adapter for Asana — User Task Lists. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: asana-get-user-task-list
      description: Asana Get a user task list
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: asana-user-task-lists.getusertasklist
      with:
        opt_fields: tools.opt_fields
      outputParameters:
      - type: object
        mapping: $.
    - name: asana-get-user-s-task-list
      description: Asana Get a user's task list
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: asana-user-task-lists.getusertasklistforuser
      with:
        opt_fields: tools.opt_fields
      outputParameters:
      - type: object
        mapping: $.