@umbraco-cms/mcp-dev 17.1.2 → 17.2.0

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/package.json CHANGED
@@ -1,9 +1,16 @@
1
1
  {
2
2
  "name": "@umbraco-cms/mcp-dev",
3
- "version": "17.1.2",
3
+ "version": "17.2.0",
4
4
  "type": "module",
5
5
  "description": "A model context protocol (MCP) server for Umbraco CMS",
6
- "main": "index.js",
6
+ "main": "dist/index.js",
7
+ "exports": {
8
+ ".": "./dist/index.js",
9
+ "./collections": {
10
+ "types": "./collections.d.ts",
11
+ "import": "./dist/collections.js"
12
+ }
13
+ },
7
14
  "mcpName": "io.github.umbraco/Umbraco-CMS-MCP-Dev",
8
15
  "bin": {
9
16
  "umbraco": "dist/index.js"
@@ -19,13 +26,18 @@
19
26
  "patch-publish-alpha": "npm version prerelease --preid=alpha && npm publish --tag alpha --access public",
20
27
  "test:e2e-sdk": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config tests/e2e-sdk/jest.config.ts --runInBand --silent --forceExit 2>/dev/null",
21
28
  "test:e2e-sdk:verbose": "E2E_VERBOSITY=verbose node --experimental-vm-modules node_modules/jest/bin/jest.js tests/e2e-sdk --runInBand --testTimeout=120000 --forceExit",
22
- "test:e2e-sdk:debug": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config tests/e2e-sdk/jest.config.ts --runInBand --detectOpenHandles"
29
+ "test:e2e-sdk:debug": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config tests/e2e-sdk/jest.config.ts --runInBand --detectOpenHandles",
30
+ "test:e2e": "npx playwright test --config tests/cms-hosted-e2e/playwright.config.ts",
31
+ "umbraco:start": "dotnet run --project infrastructure/test-umbraco/MCPTestSite",
32
+ "umbraco:stop": "lsof -ti :44391 | xargs kill 2>/dev/null; lsof -ti :56472 | xargs kill 2>/dev/null",
33
+ "dev:hosted": "wrangler dev"
23
34
  },
24
35
  "engines": {
25
36
  "node": ">=22.0.0"
26
37
  },
27
38
  "files": [
28
- "dist"
39
+ "dist",
40
+ "collections.d.ts"
29
41
  ],
30
42
  "repository": {
31
43
  "type": "git",
@@ -49,7 +61,7 @@
49
61
  "@modelcontextprotocol/sdk": "^1.25.1",
50
62
  "@types/uuid": "^10.0.0",
51
63
  "@types/yargs": "^17.0.33",
52
- "@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.4",
64
+ "@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.5",
53
65
  "axios": "^1.8.4",
54
66
  "dotenv": "^16.5.0",
55
67
  "form-data": "^4.0.4",
@@ -61,12 +73,16 @@
61
73
  },
62
74
  "devDependencies": {
63
75
  "@anthropic-ai/claude-agent-sdk": "0.2.39",
76
+ "@cloudflare/workers-oauth-provider": "^0.2.3",
64
77
  "@jest/types": "^29.6.3",
78
+ "@playwright/test": "^1.58.2",
65
79
  "@types/dotenv": "^6.1.1",
66
80
  "@types/jest": "^29.5.14",
67
81
  "@types/mime-types": "^3.0.1",
68
82
  "@types/node": "^22.14.1",
69
83
  "@types/qs": "^6.9.18",
84
+ "@umbraco-cms/mcp-hosted": "^17.0.0-beta.5",
85
+ "agents": "^0.6.0",
70
86
  "copyfiles": "^2.4.1",
71
87
  "glob": "^11.0.2",
72
88
  "jest": "^29.7.0",
@@ -76,6 +92,7 @@
76
92
  "ts-jest": "^29.3.2",
77
93
  "ts-node": "^10.9.2",
78
94
  "tsup": "^8.4.0",
79
- "typescript": "^5.8.3"
95
+ "typescript": "^5.8.3",
96
+ "wrangler": "^4.69.0"
80
97
  }
81
98
  }