@vornrun/mcp 0.2.0-beta.6 → 0.2.0-beta.8
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 +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -726,6 +726,9 @@ function loadDefaults(d) {
|
|
|
726
726
|
...map.layoutMode !== void 0 && {
|
|
727
727
|
layoutMode: map.layoutMode
|
|
728
728
|
},
|
|
729
|
+
...map.minimizedPlacement !== void 0 && {
|
|
730
|
+
minimizedPlacement: map.minimizedPlacement
|
|
731
|
+
},
|
|
729
732
|
...map.updateChannel !== void 0 && {
|
|
730
733
|
updateChannel: map.updateChannel
|
|
731
734
|
},
|
|
@@ -2704,7 +2707,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
2704
2707
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
2705
2708
|
async function main() {
|
|
2706
2709
|
configManager.init();
|
|
2707
|
-
const version = true ? "0.2.0-beta.
|
|
2710
|
+
const version = true ? "0.2.0-beta.8" : createRequire(import.meta.url)("../package.json").version;
|
|
2708
2711
|
const server = createMcpServer(version);
|
|
2709
2712
|
const transport = new StdioServerTransport();
|
|
2710
2713
|
await server.connect(transport);
|