@attested-intelligence/aga-mcp-server 2.2.1 → 2.2.2

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -5,7 +5,7 @@ Cryptographic runtime governance for AI agents and autonomous systems.
5
5
  [![npm](https://img.shields.io/npm/v/@attested-intelligence/aga-mcp-server)](https://www.npmjs.com/package/@attested-intelligence/aga-mcp-server)
6
6
  [![PyPI](https://img.shields.io/pypi/v/aga-governance)](https://pypi.org/project/aga-governance/)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
8
- [![Tests](https://img.shields.io/badge/tests-355%2B-brightgreen)](https://github.com/attestedintelligence/AGA)
8
+ [![Tests](https://img.shields.io/badge/tests-355%2B-brightgreen)](https://github.com/attestedintelligence/aga-mcp-server)
9
9
 
10
10
  ```bash
11
11
  # Try it now
@@ -164,9 +164,10 @@ with AgentSession(gateway_id="my-gateway") as session:
164
164
 
165
165
  ```bash
166
166
  npm test # TypeScript tests
167
- cd aga-python && python -m pytest # Python tests
168
167
  ```
169
168
 
169
+ For the Python SDK, install `aga-governance` from PyPI: https://pypi.org/project/aga-governance/
170
+
170
171
  ## Project Structure
171
172
 
172
173
  ```
@@ -176,7 +177,6 @@ src/ # Core protocol: artifacts, receipts, chain, Merkle, cryp
176
177
  proxy/ # MCP governance proxy (transparent interception + policy enforcement)
177
178
  tools/ # MCP tool handlers (20 tools)
178
179
  middleware/ # Zero-trust governance enforcement wrapper
179
- aga-python/ # Python SDK with @governed decorator (PyPI: aga-governance)
180
180
  independent-verifier/ # Standalone verifier with zero AGA imports
181
181
  scenarios/ # Deployment scenarios (SCADA, drone, AI agent)
182
182
  tests/ # TypeScript test suite (218 tests)
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "@attested-intelligence/aga-mcp-server",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "MCP server for cryptographic AI agent governance. Seal policy artifacts, enforce at runtime, prove with signed receipts and offline-verifiable evidence bundles.",
5
+ "mcpName": "io.github.attestedintelligence/aga-mcp-server",
5
6
  "author": "Attested Intelligence Holdings LLC",
6
7
  "license": "MIT",
7
8
  "homepage": "https://attestedintelligence.com/technology",
8
9
  "repository": {
9
10
  "type": "git",
10
- "url": "https://github.com/attestedintelligence/AGA"
11
+ "url": "https://github.com/attestedintelligence/aga-mcp-server"
11
12
  },
12
13
  "bugs": {
13
- "url": "https://github.com/attestedintelligence/AGA/issues"
14
+ "url": "https://github.com/attestedintelligence/aga-mcp-server/issues"
14
15
  },
15
16
  "type": "module",
16
17
  "main": "dist/index.js",