@vheins/local-memory-mcp 0.19.2 → 0.19.3
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/dashboard/public/assets/{index-DGiNkigj.css → index-B1-RxLD9.css} +1 -1
- package/dist/dashboard/public/assets/{index-BEmIBViV.js → index-BQArG0_h.js} +31 -30
- package/dist/dashboard/public/index.html +2 -2
- package/dist/dashboard/server.js +7 -5
- package/dist/mcp/server.js +2 -2
- package/package.json +1 -1
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
9
9
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
10
10
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
|
|
11
|
-
<script type="module" crossorigin src="/assets/index-
|
|
12
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
11
|
+
<script type="module" crossorigin src="/assets/index-BQArG0_h.js"></script>
|
|
12
|
+
<link rel="stylesheet" crossorigin href="/assets/index-B1-RxLD9.css">
|
|
13
13
|
</head>
|
|
14
14
|
<body>
|
|
15
15
|
<div id="app"></div>
|
package/dist/dashboard/server.js
CHANGED
|
@@ -1470,11 +1470,13 @@ app.use((req, res, next) => {
|
|
|
1470
1470
|
`);
|
|
1471
1471
|
}
|
|
1472
1472
|
});
|
|
1473
|
-
app.use(
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1473
|
+
app.use(
|
|
1474
|
+
(err, req, res, _next) => {
|
|
1475
|
+
if (err.status === 404) return res.status(404).end();
|
|
1476
|
+
logger.error("Unhandled error", { error: err.message });
|
|
1477
|
+
res.status(500).end();
|
|
1478
|
+
}
|
|
1479
|
+
);
|
|
1478
1480
|
if (process.env.DASHBOARD_ENABLE_MCP === "true") {
|
|
1479
1481
|
mcpClient.start().catch((e) => logger.error("MCP Client failed", { error: e.message }));
|
|
1480
1482
|
}
|
package/dist/mcp/server.js
CHANGED
|
@@ -74,8 +74,8 @@ import path from "path";
|
|
|
74
74
|
import { fileURLToPath } from "url";
|
|
75
75
|
var __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
76
76
|
var pkgVersion = "0.1.0";
|
|
77
|
-
if ("0.19.
|
|
78
|
-
pkgVersion = "0.19.
|
|
77
|
+
if ("0.19.3") {
|
|
78
|
+
pkgVersion = "0.19.3";
|
|
79
79
|
} else {
|
|
80
80
|
let searchDir = __dirname;
|
|
81
81
|
for (let i = 0; i < 5; i++) {
|