@likec4/mcp 1.40.0 → 1.42.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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@likec4/mcp",
3
3
  "description": "Model Context Protocol server for LikeC4",
4
4
  "license": "MIT",
5
- "version": "1.40.0",
5
+ "version": "1.42.0",
6
6
  "bugs": "https://github.com/likec4/likec4/issues",
7
7
  "homepage": "https://likec4.dev",
8
8
  "author": "Denis Davydkov <denis@davydkov.com>",
@@ -46,7 +46,7 @@
46
46
  }
47
47
  },
48
48
  "dependencies": {
49
- "@hpcc-js/wasm-graphviz": "1.12.0",
49
+ "@hpcc-js/wasm-graphviz": "1.12.1",
50
50
  "bundle-require": "^5.1.0",
51
51
  "esbuild": "0.25.9",
52
52
  "std-env": "^3.9.0"
@@ -55,24 +55,25 @@
55
55
  "@modelcontextprotocol/sdk": "^1.17.5",
56
56
  "@types/node": "~20.19.11",
57
57
  "citty": "^0.1.6",
58
- "remeda": "^2.30.0",
59
- "tsx": "4.20.5",
60
- "turbo": "2.5.6",
58
+ "remeda": "^2.31.1",
59
+ "tsx": "4.20.6",
60
+ "turbo": "2.5.8",
61
61
  "typescript": "5.9.2",
62
62
  "unbuild": "3.5.0",
63
63
  "vitest": "3.2.4",
64
64
  "vscode-uri": "3.1.0",
65
65
  "wireit": "0.14.12",
66
- "zod": "3.25.76",
67
- "@likec4/core": "1.40.0",
68
- "@likec4/log": "1.40.0",
69
- "@likec4/language-server": "1.40.0",
70
- "@likec4/tsconfig": "1.40.0"
66
+ "zod": "^3.25.76",
67
+ "@likec4/core": "1.42.0",
68
+ "@likec4/tsconfig": "1.42.0",
69
+ "@likec4/language-server": "1.42.0",
70
+ "@likec4/devops": "1.42.0",
71
+ "@likec4/log": "1.42.0"
71
72
  },
72
73
  "scripts": {
73
74
  "typecheck": "tsc -b --verbose",
74
75
  "build": "wireit",
75
76
  "inspector": "wireit",
76
- "clean": "pnpm rimraf dist lib"
77
+ "clean": "likec4ops clean"
77
78
  }
78
79
  }
package/src/index.ts CHANGED
@@ -79,7 +79,7 @@ const main = defineCommand({
79
79
  logger.warn`watch for changes enabled, use ${'--no-watch'} to consume less resources`
80
80
  }
81
81
 
82
- const langium = await createLanguageServices({
82
+ const langium = createLanguageServices({
83
83
  ...LikeC4FileSystem(args.watch),
84
84
  ...WithMCPServer(useStdio ? 'stdio' : { port }),
85
85
  })