diff --git a/README.md b/README.md index f09c4da..7dfde0b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ [![License: Apache 2.0](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE) -[![cMCP](https://img.shields.io/badge/Uses-cMCP_Gateway-7c3aed)](https://github.com/agentrust-io/cmcp) +[![cMCP](https://img.shields.io/badge/Uses-cMCP_Runtime-7c3aed)](https://github.com/agentrust-io/cmcp) [![Agent Manifest](https://img.shields.io/badge/Uses-Agent_Manifest-0ea5e9)](https://github.com/agentrust-io/agent-manifest) # agentrust-io Examples @@ -20,7 +20,7 @@ End-to-end integration examples showing cMCP, Agent Manifest, and TRACE working The fastest path: any Azure, AWS, or GCP VM with Trusted Launch enabled. ```bash -pip install cmcp-gateway agent-manifest +pip install cmcp-runtime agent-manifest cp examples/startup-tpm/cmcp-config.yaml . cmcp start --config cmcp-config.yaml --enforcement advisory ``` diff --git a/financial-services/README.md b/financial-services/README.md index 7afac2c..0574bb3 100644 --- a/financial-services/README.md +++ b/financial-services/README.md @@ -65,8 +65,8 @@ The catalog schema enforces `sensitivity_level` and `compliance_domain` on every |---|---|---| | Python | 3.11+ | `python3 --version` | | pip | any recent | `pip --version` | -| httpx | 0.27+ | installed by `pip install cmcp-gateway` | -| cmcp-gateway | latest | `pip install cmcp-gateway` | +| httpx | 0.27+ | installed by `pip install cmcp-runtime` | +| cmcp-runtime | latest | `pip install cmcp-runtime` | | agent-manifest | latest | `pip install agent-manifest` | | curl | any | For verification steps | @@ -86,7 +86,7 @@ cd examples ## Step 2 — Install dependencies ```bash -pip install cmcp-gateway agent-manifest httpx +pip install cmcp-runtime agent-manifest httpx ``` Verify: diff --git a/startup-tpm/README.md b/startup-tpm/README.md index 6801edc..054fc87 100644 --- a/startup-tpm/README.md +++ b/startup-tpm/README.md @@ -31,7 +31,7 @@ No MCP server is required — the runtime runs a built-in echo responder for the ## Step 1 — Install ```bash -pip install cmcp-gateway +pip install cmcp-runtime ``` Verify: @@ -40,7 +40,7 @@ Verify: cmcp --version ``` -Expected output: `cmcp-gateway 0.x.y` +Expected output: `cmcp-runtime 0.x.y` --- @@ -218,8 +218,8 @@ listen_addr: 0.0.0.0:9443 # Make sure pip's bin directory is on PATH: python3 -m cmcp --version # or: -pip show cmcp-gateway | grep Location -export PATH="$PATH:$(pip show cmcp-gateway | grep Location | cut -d' ' -f2)/../../../bin" +pip show cmcp-runtime | grep Location +export PATH="$PATH:$(pip show cmcp-runtime | grep Location | cut -d' ' -f2)/../../../bin" ``` **`CMCP_DEV_MODE` not recognised on Windows**