clickup_list_folders
Pack: clickup · Endpoint: https://gateway.pipeworx.io/clickup/mcp
List all folders in a ClickUp space. Provide space ID (e.g., “789”). Returns folder ID, name, and list count.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
_apiKey | string | yes | ClickUp API token |
space_id | string | yes | Space ID |
Example call
Arguments
{
"_apiKey": "your-clickup-api-key",
"space_id": "789"
}
curl
curl -X POST https://gateway.pipeworx.io/clickup/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"clickup_list_folders","arguments":{"_apiKey":"your-clickup-api-key","space_id":"789"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('clickup_list_folders', {
"_apiKey": "your-clickup-api-key",
"space_id": "789"
});
Response shape
Always returns: folders
| Field | Type | Description |
|---|---|---|
folders | array | Array of folder objects |
Full JSON Schema
{
"type": "object",
"properties": {
"folders": {
"type": "array",
"description": "Array of folder objects",
"items": {
"type": "object",
"description": "Folder object with ID, name, and list count"
}
}
},
"required": [
"folders"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"clickup": {
"url": "https://gateway.pipeworx.io/clickup/mcp"
}
}
}
See Getting Started for client-specific install steps.