Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
```
Expand Down
6 changes: 3 additions & 3 deletions financial-services/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

Expand All @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions startup-tpm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -40,7 +40,7 @@ Verify:
cmcp --version
```

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

---

Expand Down Expand Up @@ -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**
Expand Down
Loading