@dugynoo/huly-mcp 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +25 -0
  2. package/README.md +567 -0
  3. package/dist/index.cjs +186811 -0
  4. package/package.json +117 -0
package/package.json ADDED
@@ -0,0 +1,117 @@
1
+ {
2
+ "name": "@dugynoo/huly-mcp",
3
+ "version": "0.13.0",
4
+ "description": "MCP server for Huly integration with task type support and Process plugin tools. Fork of @firfi/huly-mcp.",
5
+ "mcpName": "io.github.dugynoo/huly-mcp",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "files": [
9
+ "dist/index.cjs"
10
+ ],
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/dugynoo/huly-mcp.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/dugynoo/huly-mcp/issues"
20
+ },
21
+ "homepage": "https://github.com/dugynoo/huly-mcp#readme",
22
+ "bin": {
23
+ "huly-mcp": "./dist/index.cjs",
24
+ "@dugynoo/huly-mcp": "./dist/index.cjs"
25
+ },
26
+ "keywords": [
27
+ "mcp",
28
+ "model-context-protocol",
29
+ "huly",
30
+ "project-management",
31
+ "issue-tracker",
32
+ "ai-tools",
33
+ "claude",
34
+ "llm"
35
+ ],
36
+ "author": "dugynoo",
37
+ "contributors": [
38
+ "dearlordylord (original author of @firfi/huly-mcp)"
39
+ ],
40
+ "license": "MIT",
41
+ "dependencies": {
42
+ "ws": "^8.18.0"
43
+ },
44
+ "lint-staged": {
45
+ "*.ts": "eslint --fix"
46
+ },
47
+ "devDependencies": {
48
+ "@changesets/cli": "^2.30.0",
49
+ "@effect/eslint-plugin": "^0.3.2",
50
+ "@effect/language-service": "^0.73.1",
51
+ "@effect/platform": "^0.94.2",
52
+ "@effect/platform-node": "^0.104.1",
53
+ "@effect/vitest": "latest",
54
+ "@eslint/compat": "^2.0.2",
55
+ "@hcengineering/account-client": "0.7.25",
56
+ "@hcengineering/activity": "0.7.0",
57
+ "@hcengineering/api-client": "0.7.19",
58
+ "@hcengineering/attachment": "0.7.0",
59
+ "@hcengineering/calendar": "0.7.0",
60
+ "@hcengineering/card": "0.7.0",
61
+ "@hcengineering/chunter": "0.7.0",
62
+ "@hcengineering/collaborator-client": "0.7.18",
63
+ "@hcengineering/contact": "0.7.0",
64
+ "@hcengineering/core": "0.7.26",
65
+ "@hcengineering/document": "0.7.0",
66
+ "@hcengineering/notification": "0.7.0",
67
+ "@hcengineering/platform": "0.7.20",
68
+ "@hcengineering/rank": "0.7.18",
69
+ "@hcengineering/tags": "0.7.0",
70
+ "@hcengineering/task": "0.7.0",
71
+ "@hcengineering/text": "0.7.19",
72
+ "@hcengineering/text-markdown": "0.7.21",
73
+ "@hcengineering/time": "0.7.0",
74
+ "@hcengineering/tracker": "0.7.0",
75
+ "@modelcontextprotocol/sdk": "^1.27.1",
76
+ "@total-typescript/ts-reset": "^0.6.1",
77
+ "@types/express": "^5.0.6",
78
+ "@types/node": "^25.1.0",
79
+ "@types/ws": "^8.18.1",
80
+ "@typescript-eslint/parser": "^8.54.0",
81
+ "effect": "^3.19.15",
82
+ "esbuild": "^0.27.2",
83
+ "eslint": "^9.39.2",
84
+ "eslint-import-resolver-typescript": "^4.4.4",
85
+ "eslint-plugin-functional": "^9.0.2",
86
+ "eslint-plugin-import": "^2.32.0",
87
+ "eslint-plugin-import-x": "^4.16.1",
88
+ "eslint-plugin-simple-import-sort": "^12.1.1",
89
+ "eslint-plugin-sort-destructure-keys": "^2.0.0",
90
+ "husky": "^9.1.7",
91
+ "jscpd": "^4.0.8",
92
+ "lint-staged": "^16.2.7",
93
+ "madge": "^8.0.0",
94
+ "posthog-node": "^5.24.11",
95
+ "tsx": "^4.21.0",
96
+ "typescript": "^5.9.3",
97
+ "typescript-eslint": "^8.54.0",
98
+ "vitest": "latest"
99
+ },
100
+ "scripts": {
101
+ "start": "node dist/index.cjs",
102
+ "build": "PKG_VERSION=$(node -p \"require('./package.json').version\") && esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:ws \"--define:PKG_VERSION=\\\"$PKG_VERSION\\\"\"",
103
+ "typecheck": "tsc -p tsconfig.json --noEmit 2>&1 | { grep -E '^(src/|test/)' && exit 1 || exit 0; }",
104
+ "test": "vitest run",
105
+ "test:coverage": "vitest run --coverage",
106
+ "test:watch": "vitest",
107
+ "lint": "find src test -name '*.ts' -print0 | xargs -0 eslint && jscpd src",
108
+ "lint:fix": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix",
109
+ "format": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix --rule '@effect/dprint: error'",
110
+ "check-format": "find src test -name '*.ts' -print0 | xargs -0 eslint --rule '@effect/dprint: error'",
111
+ "check-all": "pnpm build && pnpm typecheck && pnpm lint && pnpm test",
112
+ "circular": "madge --extensions ts --circular src",
113
+ "local-release": "changeset version && pnpm build && pnpm verify-version && changeset publish",
114
+ "verify-version": "node -e \"const v=require('./package.json').version; const d=require('fs').readFileSync('dist/index.cjs','utf8'); if(!d.includes('\\\"'+v+'\\\"'))throw new Error('dist version mismatch: expected '+v)\"",
115
+ "update-readme": "tsx scripts/update-readme-tools.ts"
116
+ }
117
+ }