All-in-one productivity
## ClickUp MCP Server: Project Management The **ClickUp MCP Server** integrates ClickUp's comprehensive project management platform into Google Antigravity, enabling developers to manage tasks, track time, and coordinate team workflows through AI-assisted productivity. ### Why ClickUp MCP? - **Everything App**: Tasks, docs, goals, whiteboards, and time tracking in one place - **Flexible Hierarchy**: Workspaces, spaces, folders, lists, and tasks - **Custom Fields**: Unlimited custom fields for any workflow - **Multiple Views**: List, board, Gantt, calendar, and more - **Automations**: 100+ automation triggers and actions ### Key Features #### 1. Task Management ```python # Create task with full details task = await clickup.createTask({ "list_id": "list_123", "name": "Implement OAuth2 authentication", "description": "Add Google and GitHub OAuth providers", "assignees": [12345], "tags": ["backend", "security"], "priority": 2, # High "due_date": "2024-12-20", "time_estimate": 28800000, # 8 hours in ms "custom_fields": [ {"id": "cf_123", "value": "8"} # Story points ] }) # Add subtasks await clickup.createSubtask({ "task_id": task.id, "name": "Set up OAuth provider configurations" }) # Update task status await clickup.updateTask({ "task_id": task.id, "status": "In Progress" }) ``` #### 2. Time Tracking and Comments ```python # Start time tracking timeEntry = await clickup.startTimeEntry({ "task_id": task.id, "description": "Working on OAuth implementation" }) # Stop time tracking await clickup.stopTimeEntry({ "team_id": "team_123" }) # Add comment await clickup.createComment({ "task_id": task.id, "comment_text": "OAuth2 flow implemented. Ready for review.", "notify_all": True }) ``` ### Configuration ```json { "mcpServers": { "clickup": { "command": "npx", "args": ["-y", "@anthropic/mcp-clickup"], "env": { "CLICKUP_API_TOKEN": "your-api-token", "CLICKUP_TEAM_ID": "your-team-id" } } } } ``` ### Use Cases **Sprint Management**: Plan and track development sprints with flexible task hierarchies. **Time Tracking**: Log development time for billing or productivity analysis. **Cross-Team Coordination**: Manage dependencies and hand-offs between teams. The ClickUp MCP Server brings comprehensive project management to your AI-assisted workflow.
{
"mcpServers": {
"clickup": {
"mcpServers": {
"clickup": {
"env": {
"CLICKUP_API_KEY": "your-api-key"
},
"args": [
"-y",
"clickup-mcp-server"
],
"command": "npx"
}
}
}
}
}