@vibegrid/mcp 0.4.0-beta.6 → 0.4.0-beta.7
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/index.js +7 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -542,6 +542,12 @@ function loadDefaults(d) {
|
|
|
542
542
|
},
|
|
543
543
|
...map.networkAccessEnabled !== void 0 && {
|
|
544
544
|
networkAccessEnabled: map.networkAccessEnabled
|
|
545
|
+
},
|
|
546
|
+
...map.showHeadlessAgents !== void 0 && {
|
|
547
|
+
showHeadlessAgents: map.showHeadlessAgents
|
|
548
|
+
},
|
|
549
|
+
...map.headlessRetentionMinutes !== void 0 && {
|
|
550
|
+
headlessRetentionMinutes: map.headlessRetentionMinutes
|
|
545
551
|
}
|
|
546
552
|
};
|
|
547
553
|
}
|
|
@@ -2470,7 +2476,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
2470
2476
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
2471
2477
|
async function main() {
|
|
2472
2478
|
configManager.init();
|
|
2473
|
-
const version = true ? "0.4.0-beta.
|
|
2479
|
+
const version = true ? "0.4.0-beta.7" : createRequire(import.meta.url)("../package.json").version;
|
|
2474
2480
|
const server = createMcpServer(version);
|
|
2475
2481
|
const transport = new StdioServerTransport();
|
|
2476
2482
|
await server.connect(transport);
|