File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,16 +4,37 @@ A Model Context Protocol (MCP) integration for managing content in the DevHub CM
44
55## Installation
66
7- The easiest way to install this package is using the [ uv] ( https://github.com/astral-sh/uv ) package manager:
7+ You will need the [ uv] ( https://github.com/astral-sh/uv ) package manager installed on your local system.
88
9- ``` bash
10- uv install devhub-cms-mcp
9+ ### Clone the repo
10+
11+ ```
12+ git clone git@github.com:devhub/devhub-cms-mcp.git
1113```
1214
13- You can also install it using pip:
15+ ### Manual configuration of Claude Desktop
1416
15- ``` bash
16- pip install devhub-cms-mcp
17+ To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your ` claude_desktop_config.json ` :
18+
19+ ```
20+ {
21+ "mcpServers": {
22+ "devhub_cms_mcp": {
23+ "command": "uv",
24+ "args": [
25+ "--directory",
26+ "/YOUR/LOCAL/PATH/devhub-cms-mcp/",
27+ "run",
28+ "main.py"
29+ ],
30+ "env": {
31+ "DEVHUB_API_KEY": "YOUR_KEY_HERE",
32+ "DEVHUB_API_SECRET": "YOUR_SECRET_HERE",
33+ "DEVHUB_BASE_URL": "https://yourbrand.cloudfrontend.net"
34+ }
35+ }
36+ }
37+ }
1738```
1839
1940## Configuration
You can’t perform that action at this time.
0 commit comments