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:
-
Clone the repository:
git clone https://github.com/Chisanan232/clickup-mcp-server.git
cd clickup-mcp-server -
Install in development mode:
- pip
- poetry
- uv
pip install -e .
poetry install
uv pip install .
Docker Installation
You can also run ClickUp MCP Server using Docker:
-
Pull the Docker image:
docker pull chisanan232/clickup-mcp-server:latest
-
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:
- pip
- poetry
- uv
clickup-mcp-server --version
poetry run clickup-mcp-server --version
uv run clickup-mcp-server --version
You should see the current version of the ClickUp MCP Server displayed.