asana_list_projects
Pack: asana · Endpoint: https://gateway.pipeworx.io/asana/mcp
List all projects in a workspace. Returns project ID, name, and archived status. Requires workspace ID.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
workspace | string | no | Workspace GID (auto-resolved if omitted) |
limit | number | no | Number of projects to return (default 20, max 100) |
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_projects","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('asana_list_projects', {});
More examples
{
"workspace": "1234567890123456",
"limit": 100
}
Response shape
Always returns: projects
| Field | Type | Description |
|---|---|---|
projects | array | List of projects in workspace |
Full JSON Schema
{
"type": "object",
"properties": {
"projects": {
"type": "array",
"description": "List of projects in workspace",
"items": {
"type": "object",
"properties": {
"gid": {
"type": "string",
"description": "Project GID"
},
"name": {
"type": "string",
"description": "Project name"
},
"archived": {
"type": "boolean",
"description": "Project archived status"
},
"permalink_url": {
"type": "string",
"description": "Project permalink URL"
}
}
}
}
},
"required": [
"projects"
]
}
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.