@firfi/huly-mcp 0.1.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.
- package/dist/index.cjs +144012 -0
- package/dist/index.js +116694 -0
- package/dist/src/config/config.d.ts +94 -0
- package/dist/src/config/config.d.ts.map +1 -0
- package/dist/src/config/config.js +247 -0
- package/dist/src/config/config.js.map +1 -0
- package/dist/src/domain/schemas.d.ts +256 -0
- package/dist/src/domain/schemas.d.ts.map +1 -0
- package/dist/src/domain/schemas.js +275 -0
- package/dist/src/domain/schemas.js.map +1 -0
- package/dist/src/huly/client.d.ts +63 -0
- package/dist/src/huly/client.d.ts.map +1 -0
- package/dist/src/huly/client.js +149 -0
- package/dist/src/huly/client.js.map +1 -0
- package/dist/src/huly/errors.d.ts +133 -0
- package/dist/src/huly/errors.d.ts.map +1 -0
- package/dist/src/huly/errors.js +108 -0
- package/dist/src/huly/errors.js.map +1 -0
- package/dist/src/huly/operations/issues.d.ts +122 -0
- package/dist/src/huly/operations/issues.d.ts.map +1 -0
- package/dist/src/huly/operations/issues.js +627 -0
- package/dist/src/huly/operations/issues.js.map +1 -0
- package/dist/src/index.d.ts +43 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +154 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/mcp/error-mapping.d.ts +67 -0
- package/dist/src/mcp/error-mapping.d.ts.map +1 -0
- package/dist/src/mcp/error-mapping.js +195 -0
- package/dist/src/mcp/error-mapping.js.map +1 -0
- package/dist/src/mcp/server.d.ts +86 -0
- package/dist/src/mcp/server.d.ts.map +1 -0
- package/dist/src/mcp/server.js +216 -0
- package/dist/src/mcp/server.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@firfi/huly-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "MCP server for Huly integration",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/dearlordylord/huly-mcp.git"
|
|
16
|
+
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/dearlordylord/huly-mcp/issues"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://github.com/dearlordylord/huly-mcp#readme",
|
|
21
|
+
"scripts": {
|
|
22
|
+
"prepare": "husky",
|
|
23
|
+
"start": "node dist/index.cjs",
|
|
24
|
+
"build": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:ws",
|
|
25
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
26
|
+
"test": "vitest run",
|
|
27
|
+
"test:watch": "vitest",
|
|
28
|
+
"lint": "tsc -p tsconfig.json --noEmit"
|
|
29
|
+
},
|
|
30
|
+
"bin": {
|
|
31
|
+
"huly-mcp": "./dist/index.cjs"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [],
|
|
34
|
+
"author": "",
|
|
35
|
+
"license": "ISC",
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@effect/platform": "^0.94.2",
|
|
38
|
+
"@effect/platform-node": "^0.104.1",
|
|
39
|
+
"@hcengineering/api-client": "^0.7.3",
|
|
40
|
+
"@hcengineering/contact": "^0.7.0",
|
|
41
|
+
"@hcengineering/core": "^0.7.4",
|
|
42
|
+
"@hcengineering/rank": "^0.7.3",
|
|
43
|
+
"@hcengineering/tags": "^0.7.0",
|
|
44
|
+
"@hcengineering/task": "^0.7.0",
|
|
45
|
+
"@hcengineering/tracker": "^0.7.0",
|
|
46
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
47
|
+
"effect": "^3.19.15",
|
|
48
|
+
"fake-indexeddb": "^6.2.5"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@effect/language-service": "^0.72.0",
|
|
52
|
+
"@effect/vitest": "latest",
|
|
53
|
+
"@types/node": "^25.1.0",
|
|
54
|
+
"@types/ws": "^8.18.1",
|
|
55
|
+
"esbuild": "^0.27.2",
|
|
56
|
+
"husky": "^9.1.7",
|
|
57
|
+
"tsx": "^4.21.0",
|
|
58
|
+
"typescript": "^5.9.3",
|
|
59
|
+
"vitest": "latest"
|
|
60
|
+
}
|
|
61
|
+
}
|