@umbraco-cms/mcp-dev 17.3.0 → 17.3.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@umbraco-cms/mcp-dev",
3
- "version": "17.3.0",
3
+ "version": "17.3.2",
4
4
  "type": "module",
5
5
  "description": "A model context protocol (MCP) server for Umbraco CMS",
6
6
  "main": "dist/index.js",
@@ -9,6 +9,9 @@
9
9
  "./collections": {
10
10
  "types": "./collections.d.ts",
11
11
  "import": "./dist/collections.js"
12
+ },
13
+ "./tool-types": {
14
+ "types": "./dist/tool-types.d.ts"
12
15
  }
13
16
  },
14
17
  "mcpName": "io.github.umbraco/Umbraco-CMS-MCP-Dev",
@@ -18,6 +21,7 @@
18
21
  "scripts": {
19
22
  "clean": "rimraf dist",
20
23
  "build": "tsup --config tsup.config.ts",
24
+ "postbuild": "umbraco-mcp-generate-types --collections ./dist/collections.js --out ./dist/tool-types.d.ts --registry-name CmsTools",
21
25
  "compile": "tsc --noEmit",
22
26
  "watch": "tsup --config tsup.config.ts --watch",
23
27
  "generate": "orval --config orval.config.ts",
@@ -30,7 +34,8 @@
30
34
  "test:e2e-sdk:verbose": "E2E_VERBOSITY=verbose node --experimental-vm-modules node_modules/jest/bin/jest.js tests/e2e-sdk --runInBand --testTimeout=120000 --forceExit",
31
35
  "test:e2e-sdk:debug": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config tests/e2e-sdk/jest.config.ts --runInBand --detectOpenHandles",
32
36
  "test:e2e": "npx playwright test --config tests/cms-hosted-e2e/playwright.config.ts",
33
- "umbraco:start": "dotnet run --project infrastructure/test-umbraco/MCPTestSite",
37
+ "umbraco:bootstrap": "bash scripts/bootstrap-demo-site.sh",
38
+ "umbraco:start": "bash scripts/bootstrap-demo-site.sh && dotnet run --project demo-site",
34
39
  "umbraco:stop": "lsof -ti :44391 | xargs kill 2>/dev/null; lsof -ti :56472 | xargs kill 2>/dev/null",
35
40
  "dev:hosted": "wrangler dev"
36
41
  },
@@ -63,8 +68,8 @@
63
68
  "@modelcontextprotocol/sdk": "^1.28.0",
64
69
  "@types/uuid": "^10.0.0",
65
70
  "@types/yargs": "^17.0.33",
66
- "@umbraco-cms/mcp-hosted": "^17.0.0-beta.8",
67
- "@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.11",
71
+ "@umbraco-cms/mcp-hosted": "^17.0.0-beta.16",
72
+ "@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.16",
68
73
  "axios": "^1.8.4",
69
74
  "dotenv": "^16.5.0",
70
75
  "form-data": "^4.0.4",