- Calendly API v2 client with auth, pagination, error handling - 27 MCP tools across 6 categories (events, event types, scheduling, users, orgs, webhooks) - 12 React MCP apps with dark theme and client-side state - Both stdio and HTTP modes supported - Full TypeScript types and documentation
39 lines
843 B
JSON
39 lines
843 B
JSON
{
|
|
"name": "@mcpengine/clickup",
|
|
"version": "1.0.0",
|
|
"description": "ClickUp MCP Server - Complete task management, collaboration, and productivity platform integration",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"clickup-mcp": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && npm run chmod",
|
|
"chmod": "chmod +x dist/index.js",
|
|
"watch": "tsc --watch",
|
|
"prepare": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"clickup",
|
|
"tasks",
|
|
"project-management",
|
|
"productivity",
|
|
"collaboration"
|
|
],
|
|
"author": "MCPEngine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.6",
|
|
"axios": "^1.7.2",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"typescript": "^5.5.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|