Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 16/umbraco-cms/reference/developer-mcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Although the details vary slightly, the general pattern is the same across all h
{
"umbraco-mcp": {
"command": "npx",
"args": ["@umbraco-cms/mcp-dev@beta"],
"args": ["@umbraco-cms/mcp-dev"],
"env": {
"NODE_TLS_REJECT_UNAUTHORIZED": "0",
"UMBRACO_CLIENT_ID": "umbraco-back-office-mcp",
Expand Down Expand Up @@ -184,7 +184,7 @@ The Umbraco MCP Server is designed to work with specific major versions of Umbra
| MCP Server Version | Compatible Umbraco Version | NPM Package Name |
|--------------------|----------------------------|--------------------------------------|
| 15.x.x | alpha | @umbraco-mcp/umbraco-mcp-cms@alpha |
| 16.x.x | all betas, 16.x | @umbraco-cms/mcp-dev@beta |
| 16.x.x | all betas, 16.x | @umbraco-cms/mcp-dev@16 |

### Version Checking

Expand Down
2 changes: 1 addition & 1 deletion 16/umbraco-cms/reference/developer-mcp/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ The `.env` file is included in `.gitignore` by default to prevent sensitive cred
You can also provide configuration values directly via CLI arguments, which override any `.env` or environment variable settings:

```bash
npx @umbraco-cms/mcp-dev@beta \
npx @umbraco-cms/mcp-dev \
--umbraco-client-id="your-id" \
--umbraco-client-secret="your-secret" \
--umbraco-base-url="http://localhost:56472" \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ npm install -g @anthropic-ai/claude-code
Add an MCP server using the Claude CLI:

```bash
claude mcp add umbraco-mcp npx @umbraco-cms/mcp-dev@beta
claude mcp add umbraco-mcp npx @umbraco-cms/mcp-dev@16
```

**Define configuration values directly**
Expand All @@ -31,7 +31,7 @@ To define configuration values directly, use this pattern:
```bash

# Add with environment variables
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
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
```

Replace the `UMBRACO_CLIENT_ID`, `UMBRACO_CLIENT_SECRET`, `UMBRACO_BASE_UR` and `UMBRACO_INCLUDE_TOOL_COLLECTIONS` values with your local connection details.
Expand Down Expand Up @@ -75,7 +75,7 @@ Example `.mcp.json` file
"mcpServers": {
"umbraco-mcp": {
"command": "npx",
"args": ["@umbraco-cms/mcp-dev@beta"],
"args": ["@umbraco-cms/mcp-dev@16"],
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ description: "Host set up for Cursor"
"mcpServers": {
"umbraco-mcp": {
"command": "npx",
"args": ["@umbraco-cms/mcp-dev@beta"],
"args": ["@umbraco-cms/mcp-dev@16"],
"env": {
"NODE_TLS_REJECT_UNAUTHORIZED": "0",
"UMBRACO_CLIENT_ID": "umbraco-back-office-mcp",
Expand Down