package.json•4.08 kB
{
"name": "@chykalophia/clickup-mcp-server",
"version": "3.4.1",
"description": "An intelligent Model Context Protocol server for ClickUp API integration with 170+ tools, AI-powered efficiency optimization, smart tool suggestions, and context-aware workflow recommendations",
"main": "build/index-enhanced.js",
"bin": {
"clickup-mcp-server": "build/index-enhanced.js",
"clickup-mcp-server-basic": "bin/clickup-mcp-server-basic.js",
"clickup-mcp-server-enhanced": "bin/clickup-mcp-server-enhanced.js",
"clickup-mcp-server-efficiency": "bin/clickup-mcp-server-efficiency.js",
"clickup-mcp-server-ai": "bin/clickup-mcp-server-ai.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node --esm src/index.ts",
"start": "node build/index-enhanced.js",
"start:enhanced": "node build/index-enhanced.js",
"start:efficiency": "node build/index-enhanced-efficiency.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:security": "jest --testPathPattern=security --coverage=false",
"test:integration": "jest --testPathPattern=integration",
"test:ci": "jest --ci --coverage --watchAll=false",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"security:audit": "npm audit --audit-level=moderate",
"security:check": "npm run security:audit && npm run test:security",
"validate": "npm run test:coverage && npm run security:check",
"validate-with-lint": "npm run lint && npm run test:coverage && npm run security:check",
"clean": "rm -rf build coverage test-results .jest-cache",
"prepare": "npm run build",
"prepack": "npm run validate",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"health": "node -e \"require('./build/utils/error-handling.js').performHealthCheck().then(console.log)\"",
"docs": "typedoc src --out docs --theme default"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nsxdavid/clickup-mcp-server.git"
},
"keywords": [
"clickup",
"mcp",
"model-context-protocol",
"ai",
"assistant",
"api",
"server",
"integration",
"automation",
"productivity",
"project-management",
"webhooks",
"time-tracking",
"goals",
"dependencies",
"attachments",
"views",
"comprehensive",
"chat",
"experimental",
"messaging",
"channels",
"reactions",
"efficiency",
"optimization",
"intelligent",
"smart-suggestions",
"context-aware",
"workflow-optimization",
"ai-powered"
],
"author": "David Whatley (https://davidwhatley.com)",
"contributors": [
"ClickUp MCP Server - Enhanced Contributors"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nsxdavid/clickup-mcp-server/issues"
},
"homepage": "https://github.com/nsxdavid/clickup-mcp-server#readme",
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"marked": "^16.2.0",
"open": "^9.1.0",
"turndown": "^7.2.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/marked": "^5.0.2",
"@types/node": "^18.19.26",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.1.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.3.3"
},
"files": [
"build/**/*",
"bin/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md",
"COMPREHENSIVE_API_COVERAGE.md",
"EFFICIENCY_ENHANCEMENT_GUIDE.md",
"WEBHOOK_PROCESSING_GUIDE.md",
"WEBHOOK_EXAMPLE.md"
],
"publishConfig": {
"access": "public"
}
}