@vibegrid/mcp 0.2.0 → 0.2.1
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 +10 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -357,6 +357,15 @@ function loadDefaults(d) {
|
|
|
357
357
|
},
|
|
358
358
|
...map.activeWorkspace !== void 0 && {
|
|
359
359
|
activeWorkspace: map.activeWorkspace
|
|
360
|
+
},
|
|
361
|
+
...map.mainViewMode !== void 0 && {
|
|
362
|
+
mainViewMode: map.mainViewMode
|
|
363
|
+
},
|
|
364
|
+
...map.layoutMode !== void 0 && {
|
|
365
|
+
layoutMode: map.layoutMode
|
|
366
|
+
},
|
|
367
|
+
...map.updateChannel !== void 0 && {
|
|
368
|
+
updateChannel: map.updateChannel
|
|
360
369
|
}
|
|
361
370
|
};
|
|
362
371
|
}
|
|
@@ -2451,7 +2460,7 @@ console.warn = (...args) => _origError("[mcp:warn]", ...args);
|
|
|
2451
2460
|
console.error = (...args) => _origError("[mcp:error]", ...args);
|
|
2452
2461
|
async function main() {
|
|
2453
2462
|
configManager.init();
|
|
2454
|
-
const version = true ? "0.2.
|
|
2463
|
+
const version = true ? "0.2.1" : createRequire(import.meta.url)("../package.json").version;
|
|
2455
2464
|
const server = createMcpServer(version);
|
|
2456
2465
|
const transport = new StdioServerTransport();
|
|
2457
2466
|
await server.connect(transport);
|