@dollhousemcp/mcp-server 1.9.19 → 1.9.20
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/CHANGELOG.md +18 -0
- package/dist/generated/version.d.ts +2 -2
- package/dist/generated/version.js +3 -3
- package/package.json +2 -2
- package/server.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.9.20] - 2025-10-17
|
|
6
|
+
|
|
7
|
+
**Fix Release**: MCP Registry Publishing Compatibility
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- MCP Registry publishing case sensitivity issue (#XXXX)
|
|
11
|
+
- Corrected `mcpName` field in package.json to match GitHub organization capitalization
|
|
12
|
+
- Changed from `io.github.dollhousemcp/mcp-server` to `io.github.DollhouseMCP/mcp-server`
|
|
13
|
+
- Resolves NPM package validation errors when publishing to MCP Registry
|
|
14
|
+
- Ensures proper namespace permission matching
|
|
15
|
+
|
|
16
|
+
### Context
|
|
17
|
+
The MCP Registry performs two case-sensitive validations:
|
|
18
|
+
1. Permission check against GitHub org name (`io.github.DollhouseMCP/*`)
|
|
19
|
+
2. NPM package validation against `mcpName` field in package.json
|
|
20
|
+
|
|
21
|
+
The initial implementation incorrectly used lowercase for `mcpName`, causing a validation mismatch. This patch release corrects the capitalization to match our GitHub organization name.
|
|
22
|
+
|
|
5
23
|
## [1.9.19] - 2025-10-17
|
|
6
24
|
|
|
7
25
|
**Comprehensive Release**: 90 commits including security fixes, PostHog telemetry, MCP registry support, and major cleanup
|
|
@@ -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 = "1.9.
|
|
6
|
-
export declare const BUILD_TIMESTAMP = "2025-10-
|
|
5
|
+
export declare const PACKAGE_VERSION = "1.9.20";
|
|
6
|
+
export declare const BUILD_TIMESTAMP = "2025-10-17T23:11:51.604Z";
|
|
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 = '1.9.
|
|
6
|
-
export const BUILD_TIMESTAMP = '2025-10-
|
|
5
|
+
export const PACKAGE_VERSION = '1.9.20';
|
|
6
|
+
export const BUILD_TIMESTAMP = '2025-10-17T23:11:51.604Z';
|
|
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9nZW5lcmF0ZWQvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7O0dBR0c7QUFFSCxNQUFNLENBQUMsTUFBTSxlQUFlLEdBQUcsUUFBUSxDQUFDO0FBQ3hDLE1BQU0sQ0FBQyxNQUFNLGVBQWUsR0FBRywwQkFBMEIsQ0FBQztBQUMxRCxNQUFNLENBQUMsTUFBTSxVQUFVLEdBQWtCLEtBQUssQ0FBQztBQUMvQyxNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUcsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEF1dG8tZ2VuZXJhdGVkIGZpbGUgLSBETyBOT1QgRURJVFxuICogR2VuZXJhdGVkIGF0IGJ1aWxkIHRpbWUgYnkgc2NyaXB0cy9nZW5lcmF0ZS12ZXJzaW9uLmpzXG4gKi9cblxuZXhwb3J0IGNvbnN0IFBBQ0tBR0VfVkVSU0lPTiA9ICcxLjkuMjAnO1xuZXhwb3J0IGNvbnN0IEJVSUxEX1RJTUVTVEFNUCA9ICcyMDI1LTEwLTE3VDIzOjExOjUxLjYwNFonO1xuZXhwb3J0IGNvbnN0IEJVSUxEX1RZUEU6ICducG0nIHwgJ2dpdCcgPSAnbnBtJztcbmV4cG9ydCBjb25zdCBQQUNLQUdFX05BTUUgPSAnQGRvbGxob3VzZW1jcC9tY3Atc2VydmVyJztcbiJdfQ==
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dollhousemcp/mcp-server",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.20",
|
|
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",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"url": "https://github.com/DollhouseMCP/mcp-server/issues"
|
|
103
103
|
},
|
|
104
104
|
"homepage": "https://dollhousemcp.com",
|
|
105
|
-
"mcpName": "io.github.
|
|
105
|
+
"mcpName": "io.github.DollhouseMCP/mcp-server",
|
|
106
106
|
"files": [
|
|
107
107
|
"dist/**/*.js",
|
|
108
108
|
"dist/**/*.d.ts",
|
package/server.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
|
|
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": "1.9.
|
|
6
|
+
"version": "1.9.20",
|
|
7
7
|
"homepage": "https://dollhousemcp.com",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/DollhouseMCP/mcp-server"
|
|
10
|
+
"url": "https://github.com/DollhouseMCP/mcp-server",
|
|
11
|
+
"source": "github"
|
|
11
12
|
},
|
|
12
13
|
"license": "AGPL-3.0",
|
|
13
14
|
"keywords": [
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
{
|
|
29
30
|
"registryType": "npm",
|
|
30
31
|
"identifier": "@dollhousemcp/mcp-server",
|
|
31
|
-
"version": "1.9.
|
|
32
|
+
"version": "1.9.20",
|
|
32
33
|
"transport": {
|
|
33
34
|
"type": "stdio"
|
|
34
35
|
}
|