asana_list_workspaces
Pack: asana · Endpoint: https://gateway.pipeworx.io/asana/mcp
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
| Field | Type | Description |
|---|---|---|
data | array | List 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.