Umbraco MCP Server

Umbraco MCP Server

Enables AI models to interact with Umbraco CMS, retrieving and manipulating content like document types and media via the Umbraco Management API.

Category
Visit Server

README

Umbraco MCP Server

Happydance Labs

A Model Context Protocol (MCP) server implementation for Umbraco CMS, allowing LLMs to access and manipulate Umbraco content through standardized interfaces.

Overview

This repository provides a Model Context Protocol server that connects to Umbraco CMS, enabling AI models like Claude to:

  • Retrieve content from Umbraco
  • Execute operations against the Umbraco Management API
  • Access document types, media, and other Umbraco resources
  • Perform actions through standardized tool interfaces

Installation

# Clone the repository
git clone https://github.com/HappydanceLabs/umbraco-mcp-server.git

# Navigate to the project directory
cd umbraco-mcp-server

# Install dependencies
npm install

# Generate Umbraco API types
npm run generate:umbraco

# Start the development server
npm run dev

The server will be available at http://localhost:8787/

Connect the MCP Inspector

To explore the MCP API and test available resources and tools:

  1. Start the MCP Inspector:

    npm run mcp:inspector
    
  2. In the Inspector interface, switch the Transport Type to SSE and enter http://localhost:8787/mcp as the URL.

  3. Click "Connect" and follow any authentication prompts.

  4. Once connected, you can list and call the available resources and tools.

Connect to Claude Desktop

To use this MCP server with Claude:

  1. Install Claude Desktop and follow Anthropic's MCP Quickstart

  2. In Claude Desktop, go to Settings > Developer > Edit Config

  3. Replace the configuration with:

{
  "mcpServers": {
    "umbraco": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/mcp"
      ]
    }
  }
}
  1. Restart Claude and you'll be able to use the Umbraco tools directly from Claude.

Deployment

  1. Create a KV namespace for OAuth:

    npx wrangler kv namespace create OAUTH_KV
    
  2. Add the KV namespace ID to wrangler.jsonc

  3. Deploy to Cloudflare Workers:

    npm run deploy
    
  4. Update your Claude configuration to use your deployed URL:

    {
      "mcpServers": {
        "umbraco": {
          "command": "npx",
          "args": [
            "mcp-remote",
            "https://your-worker-url.workers.dev/sse"
          ]
        }
      }
    }
    

Project Structure

  • /src/api: Umbraco API clients and interfaces
  • /src/resources: MCP resource implementations for reading Umbraco data
  • /src/tools: MCP tool implementations for executing operations
  • /src/helpers: Utility functions and shared code
  • /src/types: TypeScript type definitions

Development

This project uses the Model Context Protocol TypeScript SDK and Cloudflare Agents SDK to implement resources and tools according to the MCP specification. Hosted and deployed on a Cloudflare Worker.

For more information on the MCP protocol, see the official documentation.

Debugging

If you encounter issues:

# Test direct connection to the MCP server
npx mcp-remote http://localhost:8787/sse

# Clear MCP authentication cache if needed
rm -rf ~/.mcp-auth

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured