You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(release): v0.7.15 polish and differentiators
Bump release metadata to 0.7.15, upgrade the PyPI stability classifier, surface MCP Proxy discovery in public READMEs, and add the MCP Proxy design principles document.
Also include the design principles and operations docs in the sdist manifest so the source archive carries the new customer-facing documentation.
Implemented with assistance from Codex.
**Action control for autonomous agents — check posture, gate risky actions, prove execution.**
14
14
@@ -28,6 +28,8 @@ pip install agentveil
28
28
29
29
> **Paper:** Boiko, O. (2026). *[Why AI Agent Reputation Needs Both Link Analysis and Flow-Based Gating](https://zenodo.org/records/19730525)*. Zenodo.
30
30
31
+
> **MCP transport proxy ships in v0.7.15:** wrap downstream MCP servers (filesystem, github, shell) with AgentVeil Action Control Plane gating, approval routing, durable signed evidence, and replay defense. IDE-friendly adapter for Claude Desktop, Cursor, Cline, Windsurf, and VS Code. See [`agentveil_mcp_proxy/README.md`](agentveil_mcp_proxy/README.md).
|**OpenAI**|`pip install agentveil openai`|`avp_tool_definitions()` + `handle_avp_tool_call(...)` from `agentveil.tools.openai`|
237
256
|**MCP clients**|`pip install 'agentveil[mcp]'`|`agentveil-mcp` for Runtime Gate, approvals, receipts, reputation, identity lookup, and audit ([docs](agentveil_mcp/README.md)) |
257
+
|**MCP transport proxy**|`pip install agentveil`|`agentveil-mcp-proxy` wraps downstream MCP servers (filesystem, github, shell) with Action Control Plane gating, approval routing, durable signed evidence, and replay defense for Claude Desktop, Cursor, Cline, Windsurf, and VS Code ([docs](agentveil_mcp_proxy/README.md)) |
For production setup, see the [Customer Integration guide](https://github.com/agentveil-protocol/avp-sdk/blob/main/docs/CUSTOMER_INTEGRATION.md).
34
+
For production setup, see the [Customer Integration guide](https://github.com/agentveil-protocol/agentveil-sdk/blob/main/docs/CUSTOMER_INTEGRATION.md).
35
35
36
36
## What AgentVeil Provides
37
37
@@ -41,6 +41,12 @@ For production setup, see the [Customer Integration guide](https://github.com/ag
41
41
-**W3C VC v2.0 credentials** with `eddsa-jcs-2022` Data Integrity proofs.
42
42
-**DID identity** with portable `did:key` Ed25519 keys.
43
43
-**Framework integrations** for CrewAI, LangGraph, AutoGen, OpenAI, Claude MCP, Gemini, PydanticAI, Paperclip, and AWS Bedrock.
44
+
-**MCP transport proxy** for IDE clients (Claude Desktop, Cursor, Cline, Windsurf, VS Code) - wrap downstream MCP servers with Action Control Plane gating via the `agentveil-mcp-proxy` console script.
45
+
46
+
AgentVeil makes agent actions constrained, auditable, and reversible within a
47
+
declared action vocabulary and policy subset. It does not claim to solve the
48
+
general access-control safety problem; it produces bounded decisions and signed
lookup, and audit verification. Hosted read-only mode exposes public
72
78
inspection tools only.
73
79
74
-
The compatibility extra `agentveil[mcp]` still works for legacy setups. MCP setup details are in the [MCP README](https://github.com/agentveil-protocol/avp-sdk/blob/main/agentveil_mcp/README.md).
80
+
The compatibility extra `agentveil[mcp]` still works for legacy setups. MCP setup details are in the [MCP README](https://github.com/agentveil-protocol/agentveil-sdk/blob/main/agentveil_mcp/README.md).
81
+
82
+
## MCP Transport Proxy
83
+
84
+
The `agentveil-mcp-proxy` console script wraps a downstream MCP server with
85
+
runtime decision gating, human approval routing, durable signed evidence, and
86
+
replay defense. Point your IDE at `agentveil-mcp-proxy` instead of directly at
87
+
the downstream server; the proxy applies AVP policy before forwarding.
88
+
89
+
```bash
90
+
agentveil-mcp-proxy init
91
+
agentveil-mcp-proxy doctor
92
+
agentveil-mcp-proxy run
93
+
```
94
+
95
+
AVP approvals are capability tokens, not flat permissions. They are signed,
96
+
scoped to action context and payload hash, time-bounded by expiry, guarded
97
+
against replay at the proxy boundary, and attenuated when follow-on grants such
98
+
as `similar_5m` narrow the original approval scope.
99
+
100
+
See the [MCP Proxy README](https://github.com/agentveil-protocol/agentveil-sdk/blob/main/agentveil_mcp_proxy/README.md)
101
+
for the full quick start and IDE configuration examples.
75
102
76
103
## Resources
77
104
78
-
-[Full GitHub README and demo](https://github.com/agentveil-protocol/avp-sdk#readme)
0 commit comments