@umbraco-cms/mcp-dev 17.3.4 → 17.3.5
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/README.md +9 -0
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -45,6 +45,15 @@ For complete installation instructions, configuration options, tool listings, an
|
|
|
45
45
|
|
|
46
46
|
**[Umbraco MCP Documentation](https://docs.umbraco.com/umbraco-developer-mcp)**
|
|
47
47
|
|
|
48
|
+
## Hosted Deployment
|
|
49
|
+
|
|
50
|
+
The Cloudflare Worker entry point (`src/worker.ts`) supports two deployment modes, selected at request time by the `@umbraco-cms/mcp-hosted` library:
|
|
51
|
+
|
|
52
|
+
- **Single-tenant** (default) — the worker authenticates against the `UMBRACO_BASE_URL` configured in `wrangler.toml`. This is the existing behavior and requires no extra configuration.
|
|
53
|
+
- **Multi-tenant Umbraco Cloud** — set `UMBRACO_CLOUD_ROUTING_ENABLED = "true"` under `[vars]` in `wrangler.toml`. Requests to `/at/{alias}/...` resolve the upstream Umbraco Cloud project for `{alias}` and issue access tokens scoped to that resource per the MCP resource-indicator spec. Each Umbraco Cloud project served by the worker must register an OpenIddict client with id `umbraco-cms-dev-mcp-hosted`.
|
|
54
|
+
|
|
55
|
+
`siteRouting` is wired unconditionally; the per-request toggle is the env var.
|
|
56
|
+
|
|
48
57
|
## Contributing with AI Tools
|
|
49
58
|
|
|
50
59
|
This project is optimized for development with AI coding assistants. We provide instruction files for popular AI tools to help maintain consistency with our established patterns and testing standards.
|
package/dist/index.cjs
CHANGED
|
@@ -12422,7 +12422,7 @@ var StdioServerTransport = class {
|
|
|
12422
12422
|
// package.json
|
|
12423
12423
|
var package_default = {
|
|
12424
12424
|
name: "@umbraco-cms/mcp-dev",
|
|
12425
|
-
version: "17.3.
|
|
12425
|
+
version: "17.3.5",
|
|
12426
12426
|
type: "module",
|
|
12427
12427
|
description: "A model context protocol (MCP) server for Umbraco CMS",
|
|
12428
12428
|
main: "dist/index.js",
|
|
@@ -12490,8 +12490,8 @@ var package_default = {
|
|
|
12490
12490
|
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
12491
12491
|
"@types/uuid": "^10.0.0",
|
|
12492
12492
|
"@types/yargs": "^17.0.33",
|
|
12493
|
-
"@umbraco-cms/mcp-hosted": "^17.0.0-beta.
|
|
12494
|
-
"@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.
|
|
12493
|
+
"@umbraco-cms/mcp-hosted": "^17.0.0-beta.19",
|
|
12494
|
+
"@umbraco-cms/mcp-server-sdk": "^17.0.0-beta.19",
|
|
12495
12495
|
axios: "^1.8.4",
|
|
12496
12496
|
dotenv: "^16.5.0",
|
|
12497
12497
|
"form-data": "^4.0.4",
|