cms-mcp-hub
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cms-mcp-hubCreate a new page in Drupal called 'About Us'."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 serverEach "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 startHub starts on http://localhost:3456 by default.
Endpoints
URL | Purpose |
| Streamable HTTP — connect Claude.ai here |
| SSE fallback (legacy clients) |
| Web UI dashboard |
| JSON status |
| List connectors (API) |
| Add connector (API) |
| Remove connector (API) |
| 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-aConfig 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 |
|
| Hub HTTP port |
|
| Used by CLI to reach the hub |
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vengat-0100/cms_mcp_hub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server