Skip to content

Commit 73ffffd

Browse files
docs: rename cMCP Gateway to cMCP Runtime throughout (#8)
* docs: rename cMCP Gateway -> cMCP Runtime in prose Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * docs: fix badge and pip install package name (cmcp-gateway -> cmcp-runtime) The prose rename commit missed the shield badge and pip install commands. cmcp is published as cmcp-runtime on PyPI; cmcp-gateway no longer exists. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 175c435 commit 73ffffd

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
2-
[![cMCP](https://img.shields.io/badge/Uses-cMCP_Gateway-7c3aed)](https://github.com/agentrust-io/cmcp)
2+
[![cMCP](https://img.shields.io/badge/Uses-cMCP_Runtime-7c3aed)](https://github.com/agentrust-io/cmcp)
33
[![Agent Manifest](https://img.shields.io/badge/Uses-Agent_Manifest-0ea5e9)](https://github.com/agentrust-io/agent-manifest)
44

55
# agentrust-io Examples
@@ -20,7 +20,7 @@ End-to-end integration examples showing cMCP, Agent Manifest, and TRACE working
2020
The fastest path: any Azure, AWS, or GCP VM with Trusted Launch enabled.
2121

2222
```bash
23-
pip install cmcp-gateway agent-manifest
23+
pip install cmcp-runtime agent-manifest
2424
cp examples/startup-tpm/cmcp-config.yaml .
2525
cmcp start --config cmcp-config.yaml --enforcement advisory
2626
```

financial-services/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ The catalog schema enforces `sensitivity_level` and `compliance_domain` on every
6565
|---|---|---|
6666
| Python | 3.11+ | `python3 --version` |
6767
| pip | any recent | `pip --version` |
68-
| httpx | 0.27+ | installed by `pip install cmcp-gateway` |
69-
| cmcp-gateway | latest | `pip install cmcp-gateway` |
68+
| httpx | 0.27+ | installed by `pip install cmcp-runtime` |
69+
| cmcp-runtime | latest | `pip install cmcp-runtime` |
7070
| agent-manifest | latest | `pip install agent-manifest` |
7171
| curl | any | For verification steps |
7272

@@ -86,7 +86,7 @@ cd examples
8686
## Step 2 — Install dependencies
8787

8888
```bash
89-
pip install cmcp-gateway agent-manifest httpx
89+
pip install cmcp-runtime agent-manifest httpx
9090
```
9191

9292
Verify:

startup-tpm/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ No MCP server is required — the runtime runs a built-in echo responder for the
3131
## Step 1 — Install
3232

3333
```bash
34-
pip install cmcp-gateway
34+
pip install cmcp-runtime
3535
```
3636

3737
Verify:
@@ -40,7 +40,7 @@ Verify:
4040
cmcp --version
4141
```
4242

43-
Expected output: `cmcp-gateway 0.x.y`
43+
Expected output: `cmcp-runtime 0.x.y`
4444

4545
---
4646

@@ -218,8 +218,8 @@ listen_addr: 0.0.0.0:9443
218218
# Make sure pip's bin directory is on PATH:
219219
python3 -m cmcp --version
220220
# or:
221-
pip show cmcp-gateway | grep Location
222-
export PATH="$PATH:$(pip show cmcp-gateway | grep Location | cut -d' ' -f2)/../../../bin"
221+
pip show cmcp-runtime | grep Location
222+
export PATH="$PATH:$(pip show cmcp-runtime | grep Location | cut -d' ' -f2)/../../../bin"
223223
```
224224

225225
**`CMCP_DEV_MODE` not recognised on Windows**

0 commit comments

Comments
 (0)