drio
Open app

DevHub CMS MCP

Source

DevHub CMS LLM integration through the Model Context Protocol

Catalog onlyCatalog onlySTDIO

Overview

DevHub CMS MCP is a Model Context Protocol integration designed for managing and utilizing content within the DevHub CMS platform, including blog posts and operational hours.

To use DevHub CMS MCP, install the required uv package manager, configure your environment variables, and set up the MCP in your application (Claude Desktop or Cursor) by following the provided configuration instructions.

  • Manage blog posts (create, update, retrieve) - Update and retrieve hours of operation for locations - Upload images to the media gallery - Designed for integration with Large Language Models (LLMs)
  1. Automating content updates in a blog.
  2. Managing operational hours for multiple locations.
  3. Integrating with LLMs for dynamic content management.

Add to your AI client

Use these steps to connect DevHub CMS MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "devhub-cms-mcp-devhub": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-devhub-cms-mcp-devhub"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "devhub-cms-mcp-devhub": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-devhub-cms-mcp-devhub"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "devhub-cms-mcp-devhub": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-devhub-cms-mcp-devhub"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "devhub-cms-mcp-devhub": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-devhub-cms-mcp-devhub"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "devhub-cms-mcp-devhub": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-devhub-cms-mcp-devhub"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "devhub-cms-mcp-devhub": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-devhub-cms-mcp-devhub"
      ]
    }
  }
}

FAQ

What is required to run DevHub CMS MCP?

You need the `uv` package manager and proper environment variable configurations.

Can I use this MCP with other applications?

Yes, it can be integrated with applications like Claude Desktop and Cursor.

Is there a testing suite available?

Yes, the package includes a test suite for testing functionality without actual API calls.

DevHub CMS MCP — MCP Registry