Home › Other › Umbraco-CMS-MCP-Dev

Umbraco-CMS-MCP-Dev

A developer focused model context protocol (MCP) server for Umbraco CMS

TypeScript
★ 39 stars Last pushed 2026-09-22 License: MIT

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (npm 18.0.1)

npx -y @umbraco-cms/mcp-dev@18.0.1

Or add to your MCP client config:

{
  "mcpServers": {
    "umbraco-cms-mcp-dev": {
      "command": "npx",
      "args": [
        "-y",
        "@umbraco-cms/mcp-dev@18.0.1"
      ],
      "env": {
        "UMBRACO_CLIENT_ID": "<YOUR_VALUE>",
        "UMBRACO_CLIENT_SECRET": "<YOUR_VALUE>",
        "UMBRACO_BASE_URL": "<YOUR_VALUE>",
        "UMBRACO_INCLUDE_TOOL_COLLECTIONS": "<YOUR_VALUE>",
        "UMBRACO_READONLY": "<YOUR_VALUE>"
      }
    }
  }
}
  • UMBRACO_CLIENT_ID required secret — Umbraco API user client ID
  • UMBRACO_CLIENT_SECRET required secret — Umbraco API user client secret
  • UMBRACO_BASE_URL required — Base URL of your Umbraco instance
  • UMBRACO_INCLUDE_TOOL_COLLECTIONS — Comma-separated list of tool collections to include (e.g., document,media,document-type)
  • UMBRACO_READONLY — Enable readonly mode to disable all write operations (create, update, delete). Only read and query tools remain available.

Related servers

Data from the Official MCP Registry