{
  "name": "@hauptsache.net/clickup-mcp",
  "version": "1.6.2",
  "description": "Search, create, and retrieve tasks, add comments, and track time through natural language commands.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": "dist/index.js",
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "npx tsc -w & nodemon dist/index.js",
    "cli": "npx ts-node src/cli.ts",
    "prettier": "prettier --write src/**/*.ts",
    "prepublishOnly": "rm -r dist && npm run build",
    "release": "npm run build && npm publish --access public && git add . && git commit -m \"Release v$(node -p 'require(\"./package.json\").version')\" && git tag -a v$(node -p 'require(\"./package.json\").version') -m \"Release v$(node -p 'require(\"./package.json\").version')\" && git push && git push --tags",
    "mcpb": "npm run build && mcpb pack . ClickUp.mcpb",
    "test": "node --test -r ts-node/register src/**/*.test.ts"
  },
  "keywords": [
    "clickup",
    "mcp",
    "model-context-protocol",
    "llm",
    "ai",
    "ticket",
    "time-tracking",
    "productivity",
    "project-management",
    "task-management",
    "agentic-coding",
    "automation"
  ],
  "author": {
    "name": "Marco Pfeiffer",
    "email": "marco@hauptsache.net"
  },
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.15.1",
    "fuse.js": "^7.1.0",
    "remark-gfm": "^4.0.1",
    "remark-parse": "^11.0.0",
    "unified": "^11.0.5",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@anthropic-ai/mcpb": "^1.1.1",
    "@types/mdast": "^4.0.4",
    "@types/node": "^22.14.1",
    "dotenv": "^16.5.0",
    "nodemon": "^3.1.9",
    "prettier": "^3.5.3",
    "ts-node": "^10.9.2",
    "typescript": "^5.8.3",
    "undici": "^7.16.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hauptsacheNet/clickup-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/hauptsacheNet/clickup-mcp/issues"
  },
  "homepage": "https://github.com/hauptsacheNet/clickup-mcp#readme"
}
