@dollhousemcp/mcp-server 1.6.4 → 1.6.6
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 +6 -0
- package/README.md +4 -4
- package/dist/constants/version.d.ts +3 -0
- package/dist/constants/version.d.ts.map +1 -0
- package/dist/constants/version.js +4 -0
- package/dist/generated/version.d.ts +2 -2
- package/dist/generated/version.js +3 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +120 -13
- package/dist/portfolio/PortfolioRepoManager.d.ts.map +1 -1
- package/dist/portfolio/PortfolioRepoManager.js +74 -4
- package/dist/security/audit/config/suppressions.d.ts.map +1 -1
- package/dist/security/audit/config/suppressions.js +26 -1
- package/dist/server/tools/CollectionTools.js +2 -2
- package/dist/server/tools/PortfolioTools.js +2 -2
- package/dist/tools/portfolio/submitToPortfolioTool.d.ts.map +1 -1
- package/dist/tools/portfolio/submitToPortfolioTool.js +16 -5
- package/package.json +10 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dollhousemcp/mcp-server",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.6",
|
|
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",
|
|
@@ -48,9 +48,16 @@
|
|
|
48
48
|
"test:roundtrip:manual": "./scripts/test-roundtrip-workflow.sh",
|
|
49
49
|
"test:roundtrip:cleanup": "./scripts/test-roundtrip-workflow.sh cleanup",
|
|
50
50
|
"qa:direct": "node scripts/qa-direct-test.js",
|
|
51
|
+
"test:e2e:real": "cross-env \"NODE_OPTIONS=--experimental-vm-modules --no-warnings\" jest test/e2e/real-github-integration.test.ts --verbose",
|
|
52
|
+
"test:e2e:real:mcp": "cross-env \"NODE_OPTIONS=--experimental-vm-modules --no-warnings\" jest test/e2e/mcp-tool-flow.test.ts --verbose",
|
|
53
|
+
"test:e2e:real:all": "npm run test:e2e:real && npm run test:e2e:real:mcp",
|
|
54
|
+
"test:e2e:cleanup": "tsx test/e2e/cleanup-test-data.ts",
|
|
51
55
|
"qa:inspector": "node scripts/qa-inspector-cli-test.js",
|
|
52
56
|
"qa:all": "npm run qa:direct && npm run qa:inspector",
|
|
53
|
-
"qa:simple": "node scripts/qa-simple-test.js"
|
|
57
|
+
"qa:simple": "node scripts/qa-simple-test.js",
|
|
58
|
+
"update:version": "node scripts/update-version.mjs",
|
|
59
|
+
"version:bump": "node scripts/update-version.mjs",
|
|
60
|
+
"version:check": "node scripts/update-version.mjs --dry-run"
|
|
54
61
|
},
|
|
55
62
|
"keywords": [
|
|
56
63
|
"mcp",
|
|
@@ -128,6 +135,7 @@
|
|
|
128
135
|
"@types/jsdom": "^21.1.7",
|
|
129
136
|
"@types/node": "^24.0.15",
|
|
130
137
|
"cross-env": "^7.0.3",
|
|
138
|
+
"dotenv": "^17.2.1",
|
|
131
139
|
"jest": "^30.0.4",
|
|
132
140
|
"ts-jest": "^29.4.0",
|
|
133
141
|
"ts-jest-resolver": "^2.0.1",
|