Skip to content

Commit fdf1925

Browse files
authored
Merge pull request #7623 from hifi-phil/cms/v16/dev-mcp-release
Update MCP package references from beta to version 16
2 parents 1a43bb1 + c0d8d19 commit fdf1925

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

16/umbraco-cms/reference/developer-mcp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Although the details vary slightly, the general pattern is the same across all h
105105
{
106106
"umbraco-mcp": {
107107
"command": "npx",
108-
"args": ["@umbraco-cms/mcp-dev@beta"],
108+
"args": ["@umbraco-cms/mcp-dev"],
109109
"env": {
110110
"NODE_TLS_REJECT_UNAUTHORIZED": "0",
111111
"UMBRACO_CLIENT_ID": "umbraco-back-office-mcp",
@@ -185,7 +185,7 @@ The Umbraco MCP Server is designed to work with specific major versions of Umbra
185185
| MCP Server Version | Compatible Umbraco Version | NPM Package Name |
186186
|--------------------|----------------------------|--------------------------------------|
187187
| 15.x.x | alpha | @umbraco-mcp/umbraco-mcp-cms@alpha |
188-
| 16.x.x | all betas, 16.x | @umbraco-cms/mcp-dev@beta |
188+
| 16.x.x | all betas, 16.x | @umbraco-cms/mcp-dev@16 |
189189

190190
### Version Checking
191191

16/umbraco-cms/reference/developer-mcp/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The `.env` file is included in `.gitignore` by default to prevent sensitive cred
100100
You can also provide configuration values directly via CLI arguments, which override any `.env` or environment variable settings:
101101

102102
```bash
103-
npx @umbraco-cms/mcp-dev@beta \
103+
npx @umbraco-cms/mcp-dev \
104104
--umbraco-client-id="your-id" \
105105
--umbraco-client-secret="your-secret" \
106106
--umbraco-base-url="http://localhost:56472" \

16/umbraco-cms/reference/developer-mcp/host-setup/claude-code.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ npm install -g @anthropic-ai/claude-code
2121
Add an MCP server using the Claude CLI:
2222

2323
```bash
24-
claude mcp add umbraco-mcp npx @umbraco-cms/mcp-dev@beta
24+
claude mcp add umbraco-mcp npx @umbraco-cms/mcp-dev@16
2525
```
2626

2727
**Define configuration values directly**
@@ -31,7 +31,7 @@ To define configuration values directly, use this pattern:
3131
```bash
3232

3333
# Add with environment variables
34-
claude mcp add umbraco-mcp --env UMBRACO_CLIENT_ID="your-id" --env UMBRACO_CLIENT_SECRET="your-secret" --env UMBRACO_BASE_URL="https://your-domain.com" --env NODE_TLS_REJECT_UNAUTHORIZED="0" --env UMBRACO_INCLUDE_TOOL_COLLECTIONS="document,media,document-type,data-type" -- npx @umbraco-cms/mcp-dev@beta
34+
claude mcp add umbraco-mcp --env UMBRACO_CLIENT_ID="your-id" --env UMBRACO_CLIENT_SECRET="your-secret" --env UMBRACO_BASE_URL="https://your-domain.com" --env NODE_TLS_REJECT_UNAUTHORIZED="0" --env UMBRACO_INCLUDE_TOOL_COLLECTIONS="document,media,document-type,data-type" -- npx @umbraco-cms/mcp-dev@16
3535
```
3636

3737
Replace the `UMBRACO_CLIENT_ID`, `UMBRACO_CLIENT_SECRET`, `UMBRACO_BASE_UR` and `UMBRACO_INCLUDE_TOOL_COLLECTIONS` values with your local connection details.
@@ -75,7 +75,7 @@ Example `.mcp.json` file
7575
"mcpServers": {
7676
"umbraco-mcp": {
7777
"command": "npx",
78-
"args": ["@umbraco-cms/mcp-dev@beta"],
78+
"args": ["@umbraco-cms/mcp-dev@16"],
7979
}
8080
}
8181
}

16/umbraco-cms/reference/developer-mcp/host-setup/cursor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ description: "Host set up for Cursor"
1919
"mcpServers": {
2020
"umbraco-mcp": {
2121
"command": "npx",
22-
"args": ["@umbraco-cms/mcp-dev@beta"],
22+
"args": ["@umbraco-cms/mcp-dev@16"],
2323
"env": {
2424
"NODE_TLS_REJECT_UNAUTHORIZED": "0",
2525
"UMBRACO_CLIENT_ID": "umbraco-back-office-mcp",

0 commit comments

Comments
 (0)