asana_list_workspaces

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

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/asana_list_workspaces for the schema, then POST the same URL with its arguments for the data.

Get all accessible Asana workspaces. Returns workspace names and IDs needed to list projects and tasks.

Example call

Arguments

{}

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_workspaces","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('asana_list_workspaces', {});

Response shape

Always returns: data

FieldTypeDescription
dataarrayList of accessible workspaces
Full JSON Schema
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "List of accessible workspaces",
      "items": {
        "type": "object",
        "properties": {
          "gid": {
            "type": "string",
            "description": "Workspace GID"
          },
          "name": {
            "type": "string",
            "description": "Workspace name"
          }
        }
      }
    }
  },
  "required": [
    "data"
  ]
}

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 September 22, 2026