clickup
SolidWork with ClickUp from Hermes: MCP server setup, REST API patterns, task card pulls, and triage workflows.
AI & Automation 1 stars
0 forks Updated yesterday MIT
Install
Quality Score: 80/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# ClickUp
Use this skill when working with ClickUp — fetching tasks, creating/updating issues, managing lists, or configuring the ClickUp MCP server.
## Three Ways to Interact with ClickUp
### 1. Official ClickUp MCP Server (OAuth only — limited Hermes support)
The official ClickUp MCP server is at `https://mcp.clickup.com/mcp` but uses **OAuth** (browser-based authorization), **not** personal API tokens. This means:
- ❌ **Personal API tokens (`pk_...`) are rejected** — server returns `"Failed to decode JWE header"`
- ❌ **Bearer tokens from OAuth app** — also rejected unless you've gone through the full OAuth device-code flow
- ✅ **Works in Claude Desktop, Cursor, VS Code** — these clients support the interactive OAuth redirect flow
- ⚠️ **Does NOT work with Hermes HTTP MCP transport** — Hermes supports only static headers, not OAuth authorization flows
For environments that support OAuth MCP (like Claude Desktop), add as:
```yaml
mcp_servers:
clickup:
url: "https://mcp.clickup.com/mcp"
timeout: 120
# No headers needed — OAuth is handled by the client at connection time
```
### 2. REST API (recommended for Hermes)
Use the ClickUp REST API directly via `curl` or Python `urllib` — no MCP server needed:
```bash
# Personal API token in Authorization header
curl -s "https://api.clickup.com/api/v2/task/GYMED-425?custom_task_ids=true&team_id=$CLICKUP_TEAM_ID" \
-H "Authorization: $CLICKUP_API_TOKEN" | python3 -m json.tool
```
Set env vars:
```
CLICKUP_API_T...
Details
- Author
- rcdelfin
- Repository
- rcdelfin/agentkit
- Created
- 5 days ago
- Last Updated
- yesterday
- Language
- JavaScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Featured
clickup-automation
Automate ClickUp project management including tasks, spaces, folders, lists, comments, and team operations via Rube MCP (Composio). Always search tools first for current schemas.
3,226 Updated today
davepoon AI & Automation Featured
mcp-oauth-remote-gateway
Manual OAuth for remote MCP servers on headless gateways.
221,626 Updated today
NousResearch AI & Automation Listed
mcp-oauth-remote-gateway
Manual OAuth for remote MCP servers on headless gateways.
1 Updated yesterday
dsivov