@spatialy/huly-mcp 0.1.41

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.
package/package.json ADDED
@@ -0,0 +1,108 @@
1
+ {
2
+ "name": "@spatialy/huly-mcp",
3
+ "version": "0.1.41",
4
+ "description": "MCP server for Huly integration",
5
+ "mcpName": "io.github.spatialy/huly-mcp",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/spatialy/huly-mcp.git"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/spatialy/huly-mcp/issues"
20
+ },
21
+ "homepage": "https://github.com/spatialy/huly-mcp#readme",
22
+ "bin": {
23
+ "huly-mcp": "./dist/index.cjs",
24
+ "@spatialy/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": "",
37
+ "license": "MIT",
38
+ "dependencies": {
39
+ "@effect/platform": "^0.94.2",
40
+ "@effect/platform-node": "^0.104.1",
41
+ "@hcengineering/account-client": "^0.7",
42
+ "@hcengineering/activity": "^0.7.0",
43
+ "@hcengineering/api-client": "^0.7.3",
44
+ "@hcengineering/attachment": "^0.7",
45
+ "@hcengineering/calendar": "^0.7.0",
46
+ "@hcengineering/card": "^0.7.0",
47
+ "@hcengineering/chunter": "^0.7.0",
48
+ "@hcengineering/collaborator-client": "^0.7.17",
49
+ "@hcengineering/contact": "^0.7.0",
50
+ "@hcengineering/core": "^0.7.4",
51
+ "@hcengineering/document": "^0.7.0",
52
+ "@hcengineering/notification": "^0.7",
53
+ "@hcengineering/platform": "0.7.19",
54
+ "@hcengineering/rank": "^0.7.3",
55
+ "@hcengineering/tags": "^0.7.0",
56
+ "@hcengineering/task": "^0.7.0",
57
+ "@hcengineering/text": "^0.7.18",
58
+ "@hcengineering/text-markdown": "^0.7.20",
59
+ "@hcengineering/time": "^0.7.0",
60
+ "@hcengineering/tracker": "^0.7.0",
61
+ "@modelcontextprotocol/sdk": "^1.0.4",
62
+ "@total-typescript/ts-reset": "^0.6.1",
63
+ "effect": "^3.19.15",
64
+ "fake-indexeddb": "^6.2.5",
65
+ "posthog-node": "^5.24.11"
66
+ },
67
+ "lint-staged": {
68
+ "*.ts": "eslint --fix"
69
+ },
70
+ "devDependencies": {
71
+ "@effect/eslint-plugin": "^0.3.2",
72
+ "@effect/language-service": "^0.73.1",
73
+ "@effect/vitest": "latest",
74
+ "@eslint/compat": "^2.0.2",
75
+ "@types/express": "^5.0.6",
76
+ "@types/node": "^25.1.0",
77
+ "@types/ws": "^8.18.1",
78
+ "@typescript-eslint/parser": "^8.54.0",
79
+ "esbuild": "^0.27.2",
80
+ "eslint": "^9.39.2",
81
+ "eslint-import-resolver-typescript": "^4.4.4",
82
+ "eslint-plugin-functional": "^9.0.2",
83
+ "eslint-plugin-import": "^2.32.0",
84
+ "eslint-plugin-import-x": "^4.16.1",
85
+ "eslint-plugin-simple-import-sort": "^12.1.1",
86
+ "eslint-plugin-sort-destructure-keys": "^2.0.0",
87
+ "husky": "^9.1.7",
88
+ "jscpd": "^4.0.8",
89
+ "lint-staged": "^16.2.7",
90
+ "madge": "^8.0.0",
91
+ "tsx": "^4.21.0",
92
+ "typescript": "^5.9.3",
93
+ "typescript-eslint": "^8.54.0",
94
+ "vitest": "latest"
95
+ },
96
+ "scripts": {
97
+ "start": "node dist/index.cjs",
98
+ "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\\\"\"",
99
+ "typecheck": "tsc -p tsconfig.json --noEmit 2>&1 | { grep -E '^(src/|test/)' && exit 1 || exit 0; }",
100
+ "test": "vitest run",
101
+ "test:coverage": "vitest run --coverage",
102
+ "test:watch": "vitest",
103
+ "lint": "eslint src test --ext .ts && jscpd src",
104
+ "lint:fix": "eslint src test --ext .ts --fix",
105
+ "circular": "madge --extensions ts --circular src",
106
+ "update-readme": "tsx scripts/update-readme-tools.ts"
107
+ }
108
+ }