Skip to content

Commit 284ad33

Browse files
committed
Formatted article as per styleguide
1 parent f29afa3 commit 284ad33

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

16/umbraco-cms/reference/developer-mcp/host-setup/cursor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Replace the `UMBRACO_CLIENT_ID`, `UMBRACO_CLIENT_SECRET`, and `UMBRACO_BASE_URL`
3737
![MCP Panel Added](../images/Cursor-MCP-Added.png)
3838

3939
- The warning above indicates that the number of tools exceeds the limit is expected behaviour.
40-
- Next, [choose which tools or tool collections](../mcp-toolkit.md) you want to enable for your first task.
40+
- [Choose which tools or tool collections](../mcp-toolkit.md) you want to enable for your first task.
4141

4242
{% hint style="info" %}
4343
Selecting only the tools you need helps keep your setup efficient and conversations with your AI assistant more focused.

16/umbraco-cms/reference/developer-mcp/host-setup/github-copilot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ Once you’ve added your MCP Server and updated the JSON configuration, restarti
3030
Restarting the MCP Server applies any configuration or tool changes immediately without needing to reinstall or re-add the server.
3131
{% endhint %}
3232

33-
Next, [choose which tools or tool collections](../mcp-toolkit.md) you want to enable for your first task.
33+
[Choose which tools or tool collections](../mcp-toolkit.md) you want to enable for your first task.

16/umbraco-cms/reference/developer-mcp/host-setup/openai-codex.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,27 @@ description: "Host setup for OpenAI Codex"
88

99
## Getting started
1010

11-
Install the Codex CLI with npm:
11+
Option A: Install via npm:
1212

1313
```bash
1414
npm install -g @openai/codex
1515
```
1616

17-
Or install the Codex CLI with brew:
17+
Option B: Install via Homebrew:
1818

1919
```bash
2020
brew install codex
2121
```
2222

2323
### Configure using the Codex CLI
2424

25-
Add the Umbraco MCP server with the Codex CLI:
25+
1. Add the Umbraco MCP server with the Codex CLI:
2626

2727
```bash
2828
codex mcp add umbraco-mcp -- npx -y @umbraco-cms/mcp-dev@beta
2929
```
3030

31-
#### Define configuration values directly
32-
33-
If you prefer to keep secrets in your shell session, pass them as environment variables during registration:
31+
2. Define configuration values directly. If you prefer to keep secrets in your shell session, pass them as environment variables during registration:
3432

3533
```bash
3634
codex mcp add umbraco-mcp \
@@ -42,21 +40,24 @@ codex mcp add umbraco-mcp \
4240
-- npx -y @umbraco-cms/mcp-dev@beta
4341
```
4442

45-
Replace the `UMBRACO_CLIENT_ID`, `UMBRACO_CLIENT_SECRET`, `UMBRACO_BASE_URL`, and `UMBRACO_INCLUDE_TOOL_COLLECTIONS` values with your local connection details.
43+
Replace the following values with your local connection details:
44+
45+
- `UMBRACO_CLIENT_ID`
46+
- `UMBRACO_CLIENT_SECRET`
47+
- `UMBRACO_BASE_URL`
48+
- `UMBRACO_INCLUDE_TOOL_COLLECTIONS`
4649

4750
This command stores the MCP server as `umbraco-mcp` in your Codex configuration file (typically `~/.codex/config.toml`).
4851

49-
{% hint style="info" %}
50-
Use the command below at any time to see which MCP servers Codex is currently loading:
52+
3. Use the command below to see which MCP servers Codex is currently loading:
5153

52-
```
54+
```cs
5355
codex mcp list
5456
```
55-
{% endhint %}
5657

5758
## Managing tools and tool collections
5859

59-
When you change the tool set:
60+
When you need to change the tool set:
6061

61-
- Update your `.env` file with the tool collections you want (for example `document,media`).
62-
- Repeat the `codex mcp list` command to confirm that the server is healthy.
62+
- Update your `.env` file with the tool collections you want (for example, `document,media`).
63+
- Run the `codex mcp list` command to confirm that the server is healthy.

0 commit comments

Comments
 (0)