clickup_list_spaces

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

List all spaces in your ClickUp workspace. Returns space ID, name, and status.

Parameters

NameTypeRequiredDescription
_apiKeystringyesClickUp API token
team_idstringyesTeam/workspace ID

Example call

Arguments

{
  "_apiKey": "your-clickup-api-key",
  "team_id": "9012345"
}

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_spaces","arguments":{"_apiKey":"your-clickup-api-key","team_id":"9012345"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('clickup_list_spaces', {
  "_apiKey": "your-clickup-api-key",
  "team_id": "9012345"
});

Response shape

Always returns: spaces

FieldTypeDescription
spacesarrayArray of space objects
Full JSON Schema
{
  "type": "object",
  "properties": {
    "spaces": {
      "type": "array",
      "description": "Array of space objects",
      "items": {
        "type": "object",
        "description": "Space object with ID, name, and status"
      }
    }
  },
  "required": [
    "spaces"
  ]
}

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.

Regenerated from source · build May 9, 2026