Skip to main content
Version: Next

Installation

This guide provides step-by-step instructions for installing the ClickUp MCP Server on your system.

Prerequisites

Before installation, make sure you've met all the requirements.

Install Using pip

ClickUp MCP Server can be installed directly using pip, which is included with Python:

pip install clickup-mcp-server

Install Using poetry

For better dependency management and project isolation, we recommend installing ClickUp MCP Server using poetry:

poetry add clickup-mcp-server

Install Using uv

For faster installation with advanced dependency resolution, another recommended approach is using uv:

uv add clickup-mcp-server

Install from Source

For the latest development version or to contribute to the project:

  1. Clone the repository:

    git clone https://github.com/Chisanan232/clickup-mcp-server.git
    cd clickup-mcp-server
  2. Install in development mode:

    pip install -e .

Docker Installation

You can also run ClickUp MCP Server using Docker:

  1. Pull the Docker image:

    docker pull chisanan232/clickup-mcp-server:latest
  2. Or build the image yourself:

    git clone https://github.com/Chisanan232/clickup-mcp-server.git
    cd clickup-mcp-server
    docker build -t clickup-mcp-server .

Verifying Installation

To verify that the installation was successful, run:

clickup-mcp-server --version

You should see the current version of the ClickUp MCP Server displayed.