Skip to content
Draft
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
25 changes: 25 additions & 0 deletions .claude/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"permissions": {
"allow": [
"mcp__umbraco__create-data-type",
"mcp__umbraco__create-document-type-folder",
"mcp__umbraco__create-document-type",
"mcp__umbraco__create-document",
"mcp__umbraco__create-element-type",
"mcp__umbraco__get-all-data-types",
"mcp__umbraco__get-all-document-types",
"mcp__umbraco__get-data-type-property-editor-template",
"mcp__umbraco__get-document-property-value-template",
"mcp__umbraco__get-document-type-by-id",
"mcp__umbraco__get-document-type-root",
"mcp__umbraco__get-icons",
"mcp__playwright__browser_click",
"mcp__playwright__browser_type",
"mcp__playwright__browser_wait_for"
]
},
"enableAllProjectMcpServers": true,
"enabledMcpjsonServers": [
"umbraco-cms"
]
}
5 changes: 5 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
UMBRACO_CLIENT_ID=umbraco-back-office-mcp
UMBRACO_CLIENT_SECRET=1234567890
UMBRACO_BASE_URL=https://localhost:44339
NODE_TLS_REJECT_UNAUTHORIZED=0
UMBRACO_INCLUDE_TOOL_COLLECTIONS=data-type,document-type,document,media-type,media,
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,5 @@ tools/docfx/
/src/Umbraco.Cms/appsettings-schema.json
playwright-report
trace.zip
.claude/settings.local.json
.env.local
14 changes: 14 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"mcpServers": {
"umbraco-cms": {
"command": "npx",
"args": ["@umbraco-cms/mcp-dev@17"]
},
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}
}
Loading