cms-mcp-hub
A universal connector hub that proxies Claude.ai tool calls to any CMS that runs an MCP server, enabling natural language interactions with Drupal, Joomla, WordPress, and more through a single endpoint.
README
CMS MCP Hub
A universal connector hub that proxies Claude.ai tool calls to any CMS that runs an MCP server (Drupal, Joomla, WordPress, etc.).
How it works
Claude.ai ──MCP──▶ cms-mcp-hub ──SSE──▶ Drupal MCP server
──SSE──▶ Joomla MCP server
──SSE──▶ WordPress MCP server
Each "connector" has a name and a URL pointing to that CMS's hosted MCP server. The hub fetches all tools from each server, registers them prefixed by connector name, and proxies Claude's calls to the right backend.
Tool naming: <connector-name>__<original-tool-name>
Example: drupal-site-a__get_node
Requirements
- Node.js 18+
- A Drupal site with the
mcp_servermodule installed (or any CMS MCP server)
Setup
# 1. Install dependencies
npm install
# 2. Start the hub
npm start
# 3. (Optional) Custom port
PORT=4000 npm start
Hub starts on http://localhost:3456 by default.
Endpoints
| URL | Purpose |
|---|---|
POST /mcp |
Streamable HTTP — connect Claude.ai here |
GET /mcp/sse |
SSE fallback (legacy clients) |
GET /ui |
Web UI dashboard |
GET /health |
JSON status |
GET /api/connectors |
List connectors (API) |
POST /api/connectors |
Add connector (API) |
DELETE /api/connectors/:name |
Remove connector (API) |
POST /api/connectors/:name/refresh |
Re-fetch tools (API) |
Adding connectors
Web UI
Open http://localhost:3456/ui in your browser.
CLI
# Link the CLI globally (once)
npm link
# Add a connector
cms-hub add --name drupal-site-a \
--url https://yoursite.com/mcp/sse \
--token YOUR_API_TOKEN \
--description "Production Drupal site"
# List all connectors
cms-hub list
# Check hub status
cms-hub status
# Refresh tools (after adding modules to the CMS)
cms-hub refresh --name drupal-site-a
# Remove a connector
cms-hub remove --name drupal-site-a
Config file (connectors.json)
Edit directly then restart the hub:
{
"connectors": [
{
"name": "drupal-site-a",
"url": "https://yoursite.com/mcp/sse",
"token": "YOUR_API_TOKEN",
"description": "Production Drupal site"
}
]
}
Connect Claude.ai
- In Claude.ai → Settings → Integrations → Add MCP Server
- Enter:
http://localhost:3456/mcp(or your hosted hub URL) - Claude will discover all tools from all connected CMS connectors
Environment variables
| Variable | Default | Purpose |
|---|---|---|
PORT |
3456 |
Hub HTTP port |
HUB_URL |
http://localhost:3456 |
Used by CLI to reach the hub |
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.