asana_list_tasks

Pack: asana · Endpoint: https://gateway.pipeworx.io/asana/mcp

List tasks in a project. Returns task ID, name, completion status, assignee, and due date. Requires project ID.

Parameters

NameTypeRequiredDescription
projectstringyesProject GID
completed_sincestringnoOnly return tasks completed since this date (ISO 8601). Use “now” for incomplete tasks only.
limitnumbernoNumber of tasks to return (default 20, max 100)

Example call

Arguments

{
  "project": "1234567890123456"
}

curl

curl -X POST https://gateway.pipeworx.io/asana/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"asana_list_tasks","arguments":{"project":"1234567890123456"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('asana_list_tasks', {
  "project": "1234567890123456"
});

More examples

{
  "project": "1234567890123456",
  "completed_since": "now",
  "limit": 50
}

Response shape

Always returns: tasks

FieldTypeDescription
tasksarrayList of tasks in the project
Full JSON Schema
{
  "type": "object",
  "properties": {
    "tasks": {
      "type": "array",
      "description": "List of tasks in the project",
      "items": {
        "type": "object",
        "properties": {
          "gid": {
            "type": "string",
            "description": "Task GID"
          },
          "name": {
            "type": "string",
            "description": "Task name"
          },
          "completed": {
            "type": "boolean",
            "description": "Task completion status"
          },
          "assignee": {
            "type": "object",
            "description": "Task assignee",
            "properties": {
              "name": {
                "type": "string",
                "description": "Assignee name"
              }
            }
          },
          "due_on": {
            "type": "string",
            "description": "Due date in YYYY-MM-DD format"
          },
          "permalink_url": {
            "type": "string",
            "description": "Task permalink URL"
          }
        }
      }
    }
  },
  "required": [
    "tasks"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "asana": {
      "url": "https://gateway.pipeworx.io/asana/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026