@ar-agents/mcp 0.4.7 → 0.4.9
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 +20 -0
- package/README.md +11 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Picks up `@ar-agents/mercadopago@0.15.0` (`requireConfirmation` opt-in HITL
|
|
8
|
+
callback, webhookDedup wired, idempotency-key collision-safe encoding,
|
|
9
|
+
VercelKVRateLimiter jitter + retry cap) and
|
|
10
|
+
`@ar-agents/identity-attest@0.4.0` (Auth0 + Magic.link moved to subpath
|
|
11
|
+
exports for true Edge-Runtime isolation).
|
|
12
|
+
|
|
13
|
+
## 0.4.8
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Picks up `@ar-agents/mercadopago@0.14.0` (deep-audit hardening:
|
|
18
|
+
browser-context guard, strict Zod on patch schemas, deterministic
|
|
19
|
+
idempotency on subscriptions/preferences, HITL warnings on irreversible
|
|
20
|
+
ops), `@ar-agents/whatsapp@0.3.0` (browser-context guard), and
|
|
21
|
+
`@ar-agents/identity-attest@0.3.0` (Edge Runtime via Web Crypto).
|
|
22
|
+
|
|
3
23
|
## 0.4.7
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -138,3 +138,14 @@ The npm packages and the MCP server expose **identical functionality** — same
|
|
|
138
138
|
## License
|
|
139
139
|
|
|
140
140
|
MIT — © Nazareno Clemente
|
|
141
|
+
|
|
142
|
+
## Stability
|
|
143
|
+
|
|
144
|
+
This package is **pre-1.0**. Per [npm convention](https://docs.npmjs.com/about-semantic-versioning), **0.x minor versions may include breaking changes**. We document every breaking change in `CHANGELOG.md` under the corresponding minor bump and flag it explicitly. To avoid surprises:
|
|
145
|
+
|
|
146
|
+
```bash
|
|
147
|
+
# Pin to exact version (recommended for production):
|
|
148
|
+
pnpm add @ar-agents/<package>@<exact-version>
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
We commit to **no breaking changes within a patch version**, and we publish `1.0.0` once the public API has stabilized across at least two consecutive minor releases.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ar-agents/mcp",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.9",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server that exposes the entire @ar-agents/* toolkit (identity, identity-attest, mercadopago, whatsapp, banking, facturacion, shipping) to any MCP host (Claude Desktop, Cursor, Codeium, etc.). One install, one config, all AR integrations.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|