Connect DevHub CMS
Choose your client and follow the steps below.
Visual Studio Code
Install the MCP extension
Open VS Code and install GitHub Copilot (includes MCP support) from the Extensions Marketplace, or confirm it's already installed.
Open your MCP settings
Press Ctrl+Shift+P (or ⌘+Shift+P on macOS) and search for MCP: Add Server, or manually edit:
Add the server configuration
Paste the following into your mcp.json file:
{
"servers": {
"devhub-cms": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/devhub-cms"
],
"env": {
"DEVHUB_API_KEY": "YOUR_DEVHUB_API_KEY",
"DEVHUB_API_SECRET": "YOUR_DEVHUB_API_SECRET",
"DEVHUB_BASE_URL": "YOUR_DEVHUB_BASE_URL"
}
}
}
}
Set required environment variables
When prompted, provide values for:
DEVHUB_API_KEY
DEVHUB_API_SECRET
DEVHUB_BASE_URL
Start using it
Open Copilot Chat and the DevHub CMS tools will be available automatically.
Cursor
Open Cursor Settings
Go to Cursor Settings → MCP and click + Add new global MCP server, or manually edit:
Add the server configuration
Paste the following into your mcp.json:
{
"mcpServers": {
"devhub-cms": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/devhub-cms"
],
"env": {
"DEVHUB_API_KEY": "YOUR_DEVHUB_API_KEY",
"DEVHUB_API_SECRET": "YOUR_DEVHUB_API_SECRET",
"DEVHUB_BASE_URL": "YOUR_DEVHUB_BASE_URL"
}
}
}
}
Set required environment variables
Provide values for:
DEVHUB_API_KEY
DEVHUB_API_SECRET
DEVHUB_BASE_URL
Start using it
Open Cursor's AI chat — the DevHub CMS tools will appear automatically.
ChatGPT (Desktop)
Open ChatGPT Desktop settings
Click your profile icon → Settings → Beta features and ensure MCP plugin support is enabled.
Add the MCP server
Navigate to Settings → MCP Servers → + Add Server and paste:
{
"mcpServers": {
"devhub-cms": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/devhub-cms"
],
"env": {
"DEVHUB_API_KEY": "YOUR_DEVHUB_API_KEY",
"DEVHUB_API_SECRET": "YOUR_DEVHUB_API_SECRET",
"DEVHUB_BASE_URL": "YOUR_DEVHUB_BASE_URL"
}
}
}
}
Set required environment variables
Provide values for:
DEVHUB_API_KEY
DEVHUB_API_SECRET
DEVHUB_BASE_URL
Start using it
Start a new chat — DevHub CMS tools will be available when the server is connected.
Claude Desktop
Open Claude Desktop config
Open the Claude Desktop configuration file at:
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add to the mcpServers object
Merge the following into the "mcpServers" key:
{
"devhub-cms": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/devhub-cms"
],
"env": {
"DEVHUB_API_KEY": "YOUR_DEVHUB_API_KEY",
"DEVHUB_API_SECRET": "YOUR_DEVHUB_API_SECRET",
"DEVHUB_BASE_URL": "YOUR_DEVHUB_BASE_URL"
}
}
}
Set required environment variables
Replace the placeholder values for:
DEVHUB_API_KEY
DEVHUB_API_SECRET
DEVHUB_BASE_URL
Restart Claude Desktop
Quit and reopen Claude Desktop. The DevHub CMS tools will appear in the tools menu.