@trops/dash-core 0.1.73 → 0.1.74
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/electron/index.js
CHANGED
|
@@ -4570,7 +4570,8 @@ function requireProviderController () {
|
|
|
4570
4570
|
try {
|
|
4571
4571
|
const catalogPath = path.join(__dirname, "..", "mcp", "mcpServerCatalog.json");
|
|
4572
4572
|
if (existsSync(catalogPath)) {
|
|
4573
|
-
|
|
4573
|
+
const catalogData = JSON.parse(readFileSync(catalogPath, "utf-8"));
|
|
4574
|
+
catalog = catalogData.servers || [];
|
|
4574
4575
|
}
|
|
4575
4576
|
} catch (e) {
|
|
4576
4577
|
// Catalog is optional — merge is best-effort
|