Manage and utilize website content within the DevHub CMS platform
A Model Context Protocol (MCP) integration for managing content in the DevHub CMS system.
You will need the uv package manager installed on your local system.
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json
:
{
"mcpServers": {
"devhub_cms_mcp": {
"command": "uvx",
"args": [
"devhub-cms-mcp"
],
"env": {
"DEVHUB_API_KEY": "YOUR_KEY_HERE",
"DEVHUB_API_SECRET": "YOUR_SECRET_HERE",
"DEVHUB_BASE_URL": "https://yourbrand.cloudfrontend.net"
}
}
}
}
After updating the config, restart Claude Desktop.
This MCP can also be used in cursor with a similar configuration from above added to your Cursor global environment or to individual projects.
Examples here
Claude Code's command line supports MCP installs.
You can add the devhub-cms-mcp
by updating the environment variables below
claude mcp add devhub-cms-mcp \
-e DEVHUB_API_KEY=YOUR_KEY_HERE \
-e DEVHUB_API_SECRET=YOUR_SECRET_HERE \
-e DEVHUB_BASE_URL=https://yourbrand.cloudfrontend.net \
-- uvx devhub-cms-mcp
To install DevHub CMS MCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @devhub/devhub-cms-mcp --client claude
git clone git@github.com:devhub/devhub-cms-mcp.git
To use this server with the Claude Desktop app for local development, add the following configuration to the "mcpServers" section of your claude_desktop_config.json
:
{
"mcpServers": {
"devhub_cms_mcp": {
"command": "uv",
"args": [
"--directory",
"/YOUR/LOCAL/PATH/devhub-cms-mcp/",
"run",
"main.py"
],
"env": {
"DEVHUB_API_KEY": "YOUR_KEY_HERE",
"DEVHUB_API_SECRET": "YOUR_SECRET_HERE",
"DEVHUB_BASE_URL": "https://yourbrand.cloudfrontend.net"
}
}
}
}
After updating the config, restart Claude Desktop.
uv
directlyThis MCP requires the following environment variables to be set:
export DEVHUB_API_KEY="your_api_key"
export DEVHUB_API_SECRET="your_api_secret"
export DEVHUB_BASE_URL="https://yourbrand.cloudfrontend.net"
Then run the MCP
uv run main.py
This MCP provides the following tools for interacting with DevHub CMS:
This MCP is designed to be used with Large Language Models that support the Model Context Protocol. It allows LLMs to manage content in DevHub CMS without needing direct API access integrated into the LLM natively.
This package includes a test suite with mocked requests to the DevHub API, allowing you to test the functionality without making actual API calls.
To run the tests, first install the package with test dependencies:
uv pip install -e ".[test]"
Run the tests with pytest:
uv run pytest
For more detailed output and test coverage information:
uv run pytest -v --cov=devhub_cms_mcp
tests/devhub_cms_mcp/test_mcp_integration.py
: Tests for MCP integration endpointsDeploy a remote MCP server without authentication on Cloudflare Workers.
Programmatically control iOS simulators via stdio transport. Requires macOS with Xcode and installed iOS simulators.
Aggregates multiple MCP resource servers into a single interface with stdio/sse support.
Connects to the Intervals.icu API to retrieve activities, events, and wellness data.
A collection of demo files for MCP servers and clients, illustrating various transport protocols and server capabilities using Python.
Analyze Solana metrics from InfluxDB and generate Grafana dashboards.
Interact with iOS simulators and devices using Facebook's iOS Development Bridge (idb).
A server for generating various types of charts using the ECharts library.
Interact with over 100 cryptocurrency exchange APIs using the CCXT library.
Generate 2D and 3D game assets using AI models hosted on Hugging Face Spaces.