Umbraco MCP Server

A model context protocol (MCP) server for Umbraco CMS

Local serverstdioTypeScript

What is the Umbraco MCP MCP server?

Umbraco mcp mcp server lets Claude, Cursor and other MCP clients work with Umbraco MCP directly. A model context protocol (MCP) server for Umbraco CMS.

What Umbraco MCP does

THIS REPO HAS NOW MOVED - https://github.com/umbraco/Umbraco-Cms-MCP-Dev

Tools it exposes

Once connected, the assistant can call these 3 tools directly:

  • Project — specific context and architecture
  • Umbraco — In order for the MCP to talk to the Management API you will need to create a API user if you are unsure how to do this follow [Umbraco's
  • Installation — First, create an Umbraco API user with appropriate permissions. You can find instructions in [Umbraco's

Installing the umbraco mcp mcp server

The server is distributed via npm as @umbraco-mcp/umbraco-mcp-cms, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 5 environment variables: NODE_TLS_REJECT_UNAUTHORIZED, UMBRACO_CLIENT_ID, UMBRACO_CLIENT_SECRET, UMBRACO_BASE_URL, EXCLUDE_MANAGEMENT_TOOLS. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Knowledge and memory servers address the most frustrating trait of language models — walking into every conversation with no recollection of the last one. Umbraco MCP sits in that group, and the shape of its toolset — Project, Umbraco, Installation — tells you what it is really for. Worth comparing against the other knowledge memory servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • Maintained by Matthew-Wise, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the umbraco mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Projectspecific context and architecture
UmbracoIn order for the MCP to talk to the Management API you will need to create a API user if you are unsure how to do this follow [Umbraco's documentation](https://docs.umbraco.com/umbraco-cms/fundamentals/data/users/api-use
InstallationFirst, create an Umbraco API user with appropriate permissions. You can find instructions in [Umbraco's documentation](https://docs.umbraco.com/umbraco-cms/fundamentals/data/users/api-users).

How to install the Umbraco MCP MCP server

{
  "mcpServers": {
    "umbraco-mcp": {
      "command": "npx",
      "args": ["@umbraco-mcp/umbraco-mcp-cms@alpha"],
      "env": {
        "NODE_TLS_REJECT_UNAUTHORIZED": "0",
        "UMBRACO_CLIENT_ID": "umbraco-back-office-mcp",
        "UMBRACO_CLIENT_SECRET": "1234567890",
        "UMBRACO_BASE_URL": "https://localhost:44391"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
NODE_TLS_REJECT_UNAUTHORIZEDConfiguration value read at startup.Optional
UMBRACO_CLIENT_IDConfiguration value read at startup.Optional
UMBRACO_CLIENT_SECRETCredential the server authenticates with.Yes
UMBRACO_BASE_URLEndpoint or connection string the server talks to.Yes
EXCLUDE_MANAGEMENT_TOOLSConfiguration value read at startup.Optional

Example prompts to try

  • Use Umbraco MCP to Project.
  • Use Umbraco MCP to Umbraco.
  • Use Umbraco MCP to Installation.

Frequently asked questions

It connects Umbraco MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Project, Umbraco, Installation) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Umbraco MCP directly.