@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.
- package/README.md +3 -3
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Cryptographic runtime governance for AI agents and autonomous systems.
|
|
|
5
5
|
[](https://www.npmjs.com/package/@attested-intelligence/aga-mcp-server)
|
|
6
6
|
[](https://pypi.org/project/aga-governance/)
|
|
7
7
|
[](LICENSE)
|
|
8
|
-
[](https://github.com/attestedintelligence/
|
|
8
|
+
[](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.
|
|
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/
|
|
11
|
+
"url": "https://github.com/attestedintelligence/aga-mcp-server"
|
|
11
12
|
},
|
|
12
13
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/attestedintelligence/
|
|
14
|
+
"url": "https://github.com/attestedintelligence/aga-mcp-server/issues"
|
|
14
15
|
},
|
|
15
16
|
"type": "module",
|
|
16
17
|
"main": "dist/index.js",
|