@attested-intelligence/aga-mcp-server 3.6.0 → 3.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/README.md +25 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@attested-intelligence/aga-mcp-server` are recorded here, newest first. This package follows [Semantic Versioning](https://semver.org). The signed receipt and evidence-bundle wire format is the canonical SEP profile; any format-affecting change is called out explicitly.
|
|
4
4
|
|
|
5
|
+
## 3.6.1 — unreleased
|
|
6
|
+
|
|
7
|
+
README and version only; the runtime is 3.6.0's, file for file. The README:
|
|
8
|
+
|
|
9
|
+
- no longer says `aga-governance` 0.3.0 is the latest release and not yanked. 0.3.1 is current and
|
|
10
|
+
fixes the depth-bomb crash; 0.3.0 was yanked for it;
|
|
11
|
+
- lists three known issues in the `aga-proxy` gateway, each reproduced on 3.6.0 on 2026-09-23, with
|
|
12
|
+
the measured workaround where one exists: the agent port listens on every interface without
|
|
13
|
+
authentication; two clients reusing a JSON-RPC id can receive each other's results; a gateway key
|
|
14
|
+
supplied through the environment is inherited by the stdio upstream;
|
|
15
|
+
- says how a client reaches the proxy's raw-TCP agent port, instead of "any MCP client".
|
|
16
|
+
|
|
5
17
|
## 3.6.0 — 2026-09-18
|
|
6
18
|
|
|
7
19
|
### `aga-proxy` now honours `AGA_GATEWAY_KEY` / `AGA_GATEWAY_KEY_FILE`
|
package/README.md
CHANGED
|
@@ -152,7 +152,7 @@ AI Agent AGA Gateway Verifier
|
|
|
152
152
|
|
|
153
153
|
## MCP Governance Proxy
|
|
154
154
|
|
|
155
|
-
Run AGA as a transparent proxy between
|
|
155
|
+
Run AGA as a transparent proxy between an MCP client and any MCP server. The proxy's agent port speaks newline-delimited JSON-RPC 2.0 over raw TCP, not stdio or Streamable HTTP, so a stdio MCP client reaches it through a stdio relay (a few lines that pipe stdin to the port and the port to stdout), and a scripted client can speak that framing directly. Every tool call gets evaluated against policy and produces a signed receipt. Read the known issues below before you expose the port.
|
|
156
156
|
|
|
157
157
|
```bash
|
|
158
158
|
# Start the proxy (the `aga-proxy` bin) in front of an upstream MCP server.
|
|
@@ -224,10 +224,10 @@ curl https://aga-mcp-gateway.attested-intelligence.workers.dev/bundle -o evidenc
|
|
|
224
224
|
|
|
225
225
|
## Python SDK
|
|
226
226
|
|
|
227
|
-
> **
|
|
227
|
+
> **Status, rechecked against PyPI on 2026-09-23.** `aga-governance` **0.3.1** is the current release and fixes the depth-bomb crash: on a deeply nested `receipts` payload the verifier now returns a `FAILED` verdict instead of raising. 0.3.0 was yanked for that crash. Earlier versions, 0.2.6 among them, raise on the same input, so install 0.3.1 or later before you verify untrusted bundles with the Python SDK. The JavaScript reference verifier and the `@attested-intelligence/aga-verify` CLI are unaffected.
|
|
228
228
|
|
|
229
229
|
```bash
|
|
230
|
-
pip install aga-governance
|
|
230
|
+
pip install "aga-governance>=0.3.1"
|
|
231
231
|
```
|
|
232
232
|
|
|
233
233
|
```python
|
|
@@ -241,7 +241,7 @@ with AgentSession(gateway_id="my-gateway") as session:
|
|
|
241
241
|
request_id="req-1",
|
|
242
242
|
)
|
|
243
243
|
bundle = session.export_bundle()
|
|
244
|
-
result = session.verify() #
|
|
244
|
+
result = session.verify() # 0.3.1+: a hostile bundle returns FAILED, never raises
|
|
245
245
|
assert result["overall_valid"]
|
|
246
246
|
```
|
|
247
247
|
|
|
@@ -290,6 +290,27 @@ tests/ # TypeScript test suite (428 automated tests)
|
|
|
290
290
|
- [Threat boundary](https://github.com/attestedintelligence/aga-mcp-server/blob/main/THREAT_BOUNDARY.md)
|
|
291
291
|
- [Deployment guide](https://github.com/attestedintelligence/aga-mcp-server/blob/main/DEPLOYMENT.md)
|
|
292
292
|
|
|
293
|
+
## Known issues in 3.6.0 and 3.6.1
|
|
294
|
+
|
|
295
|
+
3.6.1 changes only this README and the version number; the runtime is 3.6.0's. Each item below was
|
|
296
|
+
reproduced on 2026-09-23 on `@attested-intelligence/aga-mcp-server` 3.6.0 installed from npm, and
|
|
297
|
+
concerns the `aga-proxy` gateway. The same list is kept at <https://attestedintelligence.com/security>.
|
|
298
|
+
|
|
299
|
+
1. **The agent port listens on every network interface, with no authentication.** Anyone who can
|
|
300
|
+
reach the host on that port can send governed calls through the proxy. Block inbound traffic to
|
|
301
|
+
the port in the host firewall, or admit only the agent with network policy. The control port is
|
|
302
|
+
loopback-only.
|
|
303
|
+
2. **Two clients that reuse a JSON-RPC id through one proxy can receive each other's tool results.**
|
|
304
|
+
Workaround, measured on 3.6.0: give each client its own id range, or run one proxy per client.
|
|
305
|
+
With disjoint ids, every result reached the client that asked for it.
|
|
306
|
+
3. **When the gateway key is supplied through `AGA_GATEWAY_KEY` (with or without `--ephemeral`) or
|
|
307
|
+
`AGA_GATEWAY_KEY_FILE`, the stdio upstream inherits that variable** (the seed, or the file's
|
|
308
|
+
path), so the upstream sits inside the key's trust domain. Workaround, measured on 3.6.0: run
|
|
309
|
+
without either variable. The upstream then sees neither, but the proxy signs with a per-process
|
|
310
|
+
key that cannot be pinned across restarts.
|
|
311
|
+
|
|
312
|
+
No fixed version is named until one is published.
|
|
313
|
+
|
|
293
314
|
## Security
|
|
294
315
|
|
|
295
316
|
See [SECURITY.md](https://github.com/attestedintelligence/aga-mcp-server/blob/main/SECURITY.md) for vulnerability reporting.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@attested-intelligence/aga-mcp-server",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.1",
|
|
4
4
|
"mcpName": "io.github.attestedintelligence/aga-mcp-server",
|
|
5
5
|
"description": "MCP governance proxy and evidence engine for AI agent tool calls: evaluate each call against a sealed policy, permit or deny it at the proxy boundary, and prove every decision with signed, offline-verifiable evidence bundles.",
|
|
6
6
|
"author": "Attested Intelligence Holdings LLC",
|