
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@imazhar101/mcp-clickup-server
Advanced tools
ClickUp MCP server for task management and project organization
A comprehensive MCP server for ClickUp integration, providing task management, project organization, time tracking, and team collaboration features.
# Install globally
npm install -g @imazhar101/mcp-clickup-server
# Or run directly with npx
npx @imazhar101/mcp-clickup-server
# From project root
npm install
npm run build
# The server will be available at:
./dist/servers/clickup/src/index.js
To use this server with Cline (VS Code extension), add the following to your Cline MCP settings:
File Location:
~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
%APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
Configuration:
{
"mcpServers": {
"clickup-integration": {
"command": "npx",
"args": ["@imazhar101/mcp-clickup-server"],
"env": {
"CLICKUP_API_TOKEN": "your-api-token"
},
"disabled": false,
"alwaysAllow": ["list_teams", "list_spaces", "list_tasks"]
}
}
}
npm install @imazhar101/clickup-server
Set your ClickUp API token as an environment variable:
export CLICKUP_API_TOKEN="your_clickup_api_token_here"
To get your ClickUp API token:
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"clickup": {
"command": "npx",
"args": ["@imazhar101/clickup-server"],
"env": {
"CLICKUP_API_TOKEN": "your_clickup_api_token_here"
}
}
}
}
Run the server:
npx @imazhar101/clickup-server
get_tasks
- Get tasks from a list, folder, or space with filtering optionsget_task
- Get detailed information about a specific taskcreate_task
- Create a new task with full metadata supportupdate_task
- Update existing task properties and assignmentsdelete_task
- Delete a task permanentlyget_task_comments
- Retrieve all comments for a specific taskcreate_task_comment
- Add a comment to a task with notification optionsget_lists
- Get lists within a folderget_folderless_lists
- Get lists directly in a space (no folder)create_list
- Create a new list in a foldercreate_folderless_list
- Create a new list directly in a spaceupdate_list
- Update list propertiesdelete_list
- Delete a list permanentlyget_folders
- Get folders within a spacecreate_folder
- Create a new folder in a spaceupdate_folder
- Update folder propertiesdelete_folder
- Delete a folder permanentlyget_spaces
- Get spaces within a teamget_space
- Get detailed information about a specific spacecreate_space
- Create a new space in a teamupdate_space
- Update space properties and settingsdelete_space
- Delete a space permanentlyget_teams
- Get all authorized teams for the userget_team_members
- Get members of a specific teamget_user
- Get detailed user informationget_time_entries
- Get time entries for a team with filteringcreate_time_entry
- Create a new time entry for productivity trackingget_goals
- Get goals for a team with completion filteringcreate_goal
- Create a new team goal with owners and deadlines{
"name": "create_task",
"arguments": {
"list_id": "123456789",
"name": "Implement new feature",
"description": "Add user authentication to the application",
"priority": 2,
"assignees": ["987654321"],
"tags": ["feature", "authentication"],
"due_date": "1640995200000"
}
}
{
"name": "get_tasks",
"arguments": {
"list_id": "123456789",
"statuses": ["in progress", "review"],
"assignees": ["987654321"],
"order_by": "due_date",
"include_closed": false
}
}
{
"name": "create_time_entry",
"arguments": {
"team_id": "456789123",
"description": "Working on authentication feature",
"start": "1640995200000",
"duration": 7200000,
"tid": "task_id_here"
}
}
When creating or updating tasks, use these priority values:
1
- Urgent (red)2
- High (yellow)3
- Normal (blue)4
- Low (gray)All dates should be provided as Unix timestamps in milliseconds. For example:
"1640995200000"
represents January 1, 2022, 00:00:00 UTCThe server provides detailed error messages for:
All errors are returned in a structured format with descriptive messages to help troubleshoot issues.
npm run build
Ensure you have a valid ClickUp API token set:
export CLICKUP_API_TOKEN="your_token"
npm test
This server implements the full ClickUp REST API v2 functionality. For detailed parameter descriptions and response formats, refer to the ClickUp API Documentation.
MIT License - see LICENSE file for details.
FAQs
ClickUp MCP server for task management and project organization
We found that @imazhar101/mcp-clickup-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.