@dollhousemcp/mcp-server 2.0.12-rc.8 → 2.0.12-rc.9
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.
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* Auto-generated file - DO NOT EDIT
|
|
3
3
|
* Generated at build time by scripts/generate-version.js
|
|
4
4
|
*/
|
|
5
|
-
export declare const PACKAGE_VERSION = "2.0.12-rc.
|
|
6
|
-
export declare const BUILD_TIMESTAMP = "2026-04-09T04:
|
|
5
|
+
export declare const PACKAGE_VERSION = "2.0.12-rc.9";
|
|
6
|
+
export declare const BUILD_TIMESTAMP = "2026-04-09T04:57:47.874Z";
|
|
7
7
|
export declare const BUILD_TYPE: 'npm' | 'git';
|
|
8
8
|
export declare const PACKAGE_NAME = "@dollhousemcp/mcp-server";
|
|
9
9
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* Auto-generated file - DO NOT EDIT
|
|
3
3
|
* Generated at build time by scripts/generate-version.js
|
|
4
4
|
*/
|
|
5
|
-
export const PACKAGE_VERSION = '2.0.12-rc.
|
|
6
|
-
export const BUILD_TIMESTAMP = '2026-04-09T04:
|
|
5
|
+
export const PACKAGE_VERSION = '2.0.12-rc.9';
|
|
6
|
+
export const BUILD_TIMESTAMP = '2026-04-09T04:57:47.874Z';
|
|
7
7
|
export const BUILD_TYPE = 'npm';
|
|
8
8
|
export const PACKAGE_NAME = '@dollhousemcp/mcp-server';
|
|
9
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9nZW5lcmF0ZWQvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7O0dBR0c7QUFFSCxNQUFNLENBQUMsTUFBTSxlQUFlLEdBQUcsYUFBYSxDQUFDO0FBQzdDLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBRywwQkFBMEIsQ0FBQztBQUMxRCxNQUFNLENBQUMsTUFBTSxVQUFVLEdBQWtCLEtBQUssQ0FBQztBQUMvQyxNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUcsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEF1dG8tZ2VuZXJhdGVkIGZpbGUgLSBETyBOT1QgRURJVFxuICogR2VuZXJhdGVkIGF0IGJ1aWxkIHRpbWUgYnkgc2NyaXB0cy9nZW5lcmF0ZS12ZXJzaW9uLmpzXG4gKi9cblxuZXhwb3J0IGNvbnN0IFBBQ0tBR0VfVkVSU0lPTiA9ICcyLjAuMTItcmMuOSc7XG5leHBvcnQgY29uc3QgQlVJTERfVElNRVNUQU1QID0gJzIwMjYtMDQtMDlUMDQ6NTc6NDcuODc0Wic7XG5leHBvcnQgY29uc3QgQlVJTERfVFlQRTogJ25wbScgfCAnZ2l0JyA9ICducG0nO1xuZXhwb3J0IGNvbnN0IFBBQ0tBR0VfTkFNRSA9ICdAZG9sbGhvdXNlbWNwL21jcC1zZXJ2ZXInO1xuIl19
|
package/dist/web/public/setup.js
CHANGED
|
@@ -709,7 +709,7 @@
|
|
|
709
709
|
}
|
|
710
710
|
};
|
|
711
711
|
|
|
712
|
-
/** Update notice, badge,
|
|
712
|
+
/** Update notice, badge, button, AND current config display for a single platform */
|
|
713
713
|
const updatePlatformDetectionState = (platformId) => {
|
|
714
714
|
const detected = detectedConfigs[platformId];
|
|
715
715
|
if (!detected?.installed) return;
|
|
@@ -721,6 +721,12 @@
|
|
|
721
721
|
updateDetectionNotice(panel?.querySelector('.setup-installed-notice'), matches);
|
|
722
722
|
updateDetectionBadge(tabBtn?.querySelector('.setup-tab-badge'), matches);
|
|
723
723
|
updateDetectionButton(panel?.querySelector('.setup-install-btn'), matches);
|
|
724
|
+
|
|
725
|
+
// Refresh the "Current config" code block with the latest detected config
|
|
726
|
+
if (detected.currentConfig && panel) {
|
|
727
|
+
const codeEl = panel.querySelector('.setup-installed-notice pre code');
|
|
728
|
+
if (codeEl) codeEl.textContent = JSON.stringify(detected.currentConfig, null, 2);
|
|
729
|
+
}
|
|
724
730
|
};
|
|
725
731
|
|
|
726
732
|
const updateDetectionNotice = (notice, matches) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dollhousemcp/mcp-server",
|
|
3
|
-
"version": "2.0.12-rc.
|
|
3
|
+
"version": "2.0.12-rc.9",
|
|
4
4
|
"description": "DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
package/server.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "io.github.DollhouseMCP/mcp-server",
|
|
4
4
|
"title": "DollhouseMCP",
|
|
5
5
|
"description": "OSS to create Personas, Skills, Templates, Agents, and Memories to customize your AI experience.",
|
|
6
|
-
"version": "2.0.12-rc.
|
|
6
|
+
"version": "2.0.12-rc.9",
|
|
7
7
|
"homepage": "https://dollhousemcp.com",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
{
|
|
30
30
|
"registryType": "npm",
|
|
31
31
|
"identifier": "@dollhousemcp/mcp-server",
|
|
32
|
-
"version": "2.0.12-rc.
|
|
32
|
+
"version": "2.0.12-rc.9",
|
|
33
33
|
"transport": {
|
|
34
34
|
"type": "stdio"
|
|
35
35
|
}
|