@tiangong-lca/mcp-server 0.0.28 → 0.0.31

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 CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "@tiangong-lca/mcp-server",
3
- "version": "0.0.28",
3
+ "version": "0.0.31",
4
4
  "description": "TianGong LCA MCP Server",
5
5
  "license": "MIT",
6
6
  "author": "Nan LI",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/linancn/tiangong-lca-mcp"
10
+ },
7
11
  "type": "module",
8
12
  "bin": {
9
13
  "tiangong-lca-mcp-stdio": "dist/src/index.js",
@@ -23,28 +27,30 @@
23
27
  "start:server": "npm run build && concurrently \"npx dotenv -e .env -- node dist/src/index_server.js\" \"DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector\"",
24
28
  "start:server-local": "npm run build && concurrently \"npx dotenv -e .env -- node dist/src/index_server_local.js\" \"DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector\"",
25
29
  "test": "node test/tidas_validation_test.js",
30
+ "prepush:gate": "npm run build && npm run lint && npm test",
26
31
  "lint": "prettier -c --write \"**/**.{js,jsx,tsx,ts,less,md,json}\"",
27
32
  "ncu": "npx npm-check-updates",
28
33
  "ncu:update": "npx npm-check-updates -u"
29
34
  },
30
35
  "dependencies": {
31
- "@modelcontextprotocol/sdk": "^1.26.0",
32
- "@supabase/supabase-js": "^2.95.3",
33
- "@tiangong-lca/tidas-sdk": "^0.1.30",
36
+ "@dagrejs/dagre": "^3.0.0",
37
+ "@modelcontextprotocol/sdk": "^1.29.0",
38
+ "@supabase/supabase-js": "^2.106.1",
39
+ "@tiangong-lca/tidas-sdk": "^0.1.40",
34
40
  "@types/express": "^5.0.6",
35
- "@upstash/redis": "^1.36.2",
41
+ "@upstash/redis": "^1.38.0",
36
42
  "aws-jwt-verify": "^5.1.1",
37
- "olca-ipc": "^2.2.1",
38
- "zod": "^4.3.6"
43
+ "olca-ipc": "^2.6.2",
44
+ "zod": "^4.4.3"
39
45
  },
40
46
  "devDependencies": {
41
- "@modelcontextprotocol/inspector": "^0.19.0",
47
+ "@modelcontextprotocol/inspector": "^0.21.2",
42
48
  "dotenv-cli": "^11.0.0",
43
- "npm-check-updates": "^19.3.2",
44
- "prettier": "^3.8.1",
49
+ "npm-check-updates": "^22.2.1",
50
+ "prettier": "^3.8.3",
45
51
  "prettier-plugin-organize-imports": "^4.3.0",
46
52
  "shx": "^0.4.0",
47
- "tsx": "^4.21.0",
48
- "typescript": "^5.9.3"
53
+ "tsx": "^4.22.3",
54
+ "typescript": "^6.0.3"
49
55
  }
50
56
  }