@dxheroes/local-mcp-backend 0.9.0 → 0.9.2

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.
@@ -1,9 +1,9 @@
1
1
 
2
- > @dxheroes/local-mcp-backend@0.9.0 build /home/runner/work/local-mcp-gateway/local-mcp-gateway/apps/backend
2
+ > @dxheroes/local-mcp-backend@0.9.2 build /home/runner/work/local-mcp-gateway/local-mcp-gateway/apps/backend
3
3
  > nest build
4
4
 
5
5
  -  TSC  Initializing type checker...
6
6
  ✔  TSC  Initializing type checker...
7
7
  >  TSC  Found 0 issues.
8
8
  >  SWC  Running...
9
- Successfully compiled: 56 files with swc (92.5ms)
9
+ Successfully compiled: 56 files with swc (92.29ms)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.2](https://github.com/DXHeroes/local-mcp-gateway/compare/backend-v0.9.1...backend-v0.9.2) (2026-03-11)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @dxheroes/local-mcp-core bumped to 0.7.2
11
+ * @dxheroes/local-mcp-database bumped to 0.5.2
12
+ * @dxheroes/mcp-gemini-deep-research bumped to 0.5.5
13
+ * @dxheroes/mcp-merk bumped to 0.3.5
14
+ * @dxheroes/mcp-toggl bumped to 0.3.5
15
+ * devDependencies
16
+ * @dxheroes/local-mcp-config bumped to 0.4.10
17
+
18
+ ## [0.9.1](https://github.com/DXHeroes/local-mcp-gateway/compare/backend-v0.9.0...backend-v0.9.1) (2026-03-11)
19
+
20
+
21
+ ### Dependencies
22
+
23
+ * The following workspace dependencies were updated
24
+ * dependencies
25
+ * @dxheroes/local-mcp-core bumped to 0.7.1
26
+ * @dxheroes/local-mcp-database bumped to 0.5.1
27
+ * @dxheroes/mcp-gemini-deep-research bumped to 0.5.4
28
+ * @dxheroes/mcp-merk bumped to 0.3.4
29
+ * @dxheroes/mcp-toggl bumped to 0.3.4
30
+ * devDependencies
31
+ * @dxheroes/local-mcp-config bumped to 0.4.9
32
+
3
33
  ## [0.9.0](https://github.com/DXHeroes/local-mcp-gateway/compare/backend-v0.8.0...backend-v0.9.0) (2026-03-10)
4
34
 
5
35
 
package/Dockerfile CHANGED
@@ -5,6 +5,7 @@ WORKDIR /app
5
5
 
6
6
  # Install pnpm
7
7
  RUN corepack enable && corepack prepare pnpm@latest --activate
8
+ ENV NODE_OPTIONS="--max-old-space-size=4096"
8
9
 
9
10
  # Copy workspace files
10
11
  COPY pnpm-workspace.yaml pnpm-lock.yaml package.json turbo.json tsconfig.json ./
@@ -3,7 +3,7 @@ set -e
3
3
 
4
4
  echo "Pushing database schema..."
5
5
  cd /app/packages/database
6
- npx prisma db push --skip-generate --config ./dist/prisma.config.js
6
+ pnpm exec prisma db push --config ./dist/prisma.config.js
7
7
 
8
8
  echo "Starting application..."
9
9
  cd /app/apps/backend
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxheroes/local-mcp-backend",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "NestJS API server providing MCP proxy, server aggregation, OAuth 2.1, and profile management",
5
5
  "license": "Elastic-2.0",
6
6
  "type": "module",
@@ -23,11 +23,11 @@
23
23
  "reflect-metadata": "^0.2.2",
24
24
  "rxjs": "^7.8.2",
25
25
  "zod": "^4.3.5",
26
- "@dxheroes/local-mcp-database": "0.5.0",
27
- "@dxheroes/local-mcp-core": "0.7.0",
28
- "@dxheroes/mcp-gemini-deep-research": "0.5.3",
29
- "@dxheroes/mcp-merk": "0.3.3",
30
- "@dxheroes/mcp-toggl": "0.3.3"
26
+ "@dxheroes/local-mcp-core": "0.7.2",
27
+ "@dxheroes/local-mcp-database": "0.5.2",
28
+ "@dxheroes/mcp-gemini-deep-research": "0.5.5",
29
+ "@dxheroes/mcp-toggl": "0.3.5",
30
+ "@dxheroes/mcp-merk": "0.3.5"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@nestjs/cli": "^11.0.14",
@@ -41,7 +41,7 @@
41
41
  "@types/pg": "^8.18.0",
42
42
  "typescript": "^5.9.3",
43
43
  "vitest": "^4.0.17",
44
- "@dxheroes/local-mcp-config": "0.4.8"
44
+ "@dxheroes/local-mcp-config": "0.4.10"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "nest build",