Asana · Capability

Asana User Task Lists API — User Task Lists

Asana User Task Lists API — 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

user-task-lists-user-task-lists.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Asana User Task Lists API — User Task Lists
  description: 'Asana User Task Lists API — 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: user-task-lists-user-task-lists
    baseUri: https://app.asana.com/api/1.0
    description: Asana User Task Lists API — 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: user_task_list_gid
          in: path
          type: string
          required: true
    - 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: user_gid
          in: path
          type: string
          required: true
        - name: workspace
          in: query
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.ASANA_API_KEY}}'
  exposes:
  - type: rest
    namespace: user-task-lists-user-task-lists-rest
    port: 8080
    description: REST adapter for Asana User Task Lists API — 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: user-task-lists-user-task-lists.getusertasklist
        with:
          user_task_list_gid: rest.user_task_list_gid
        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: user-task-lists-user-task-lists.getusertasklistforuser
        with:
          user_gid: rest.user_gid
          workspace: rest.workspace
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: user-task-lists-user-task-lists-mcp
    port: 9090
    transport: http
    description: MCP adapter for Asana User Task Lists API — 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: user-task-lists-user-task-lists.getusertasklist
      with:
        user_task_list_gid: tools.user_task_list_gid
      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: user-task-lists-user-task-lists.getusertasklistforuser
      with:
        user_gid: tools.user_gid
        workspace: tools.workspace
      outputParameters:
      - type: object
        mapping: $.