asana_search_tasks

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

Search tasks across a workspace by keyword. Returns matching tasks with ID, name, completion status, and assignee. Requires workspace ID.

Parameters

NameTypeRequiredDescription
workspacestringnoWorkspace GID (auto-resolved if omitted)
textstringyesSearch query text
limitnumbernoNumber of results to return (default 20, max 100)

Example call

Arguments

{
  "text": "website redesign"
}

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_search_tasks","arguments":{"text":"website redesign"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('asana_search_tasks', {
  "text": "website redesign"
});

More examples

{
  "text": "bug fix",
  "workspace": "1234567890123456",
  "limit": 50
}

Response shape

Always returns: tasks

FieldTypeDescription
tasksarrayList of matching tasks
Full JSON Schema
{
  "type": "object",
  "properties": {
    "tasks": {
      "type": "array",
      "description": "List of matching tasks",
      "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