@ar-agents/mcp 0.4.4 → 0.4.6

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/CHANGELOG.md +27 -0
  2. package/package.json +17 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Picks up `@ar-agents/mercadopago@0.12.0` (idempotency-by-default) and
8
+ `@ar-agents/whatsapp@0.2.0` (`scopedTo` mode for agent-hijacking
9
+ prevention).
10
+ - **19 new registry tests** (`test/registries.test.ts`) covering both
11
+ configured and unconfigured paths for every registry factory:
12
+ identity, banking, mercadopago, whatsapp, shipping, facturacion,
13
+ identity-attest. Honest coverage now at 74%/48%/92%/74% (was
14
+ 66%/26%/88%/66% with the previous threshold relaxation).
15
+ - Coverage thresholds raised to match the new floor: 70/45/90/70.
16
+
17
+ ## 0.4.5
18
+
19
+ ### Patch Changes
20
+
21
+ - Picks up `@ar-agents/mercadopago@0.11.0` — composability + cross-LATAM + fraud scoring:
22
+ - **Tool middleware pattern**: `withAuditLog`, `withRateLimit`, `withMetrics`, `withRetry` + `compose()`
23
+ - **TaxID validation cross-LATAM**: AR/BR/MX/CL/CO/UY/PE
24
+ - **`additional_info` enrichment** on `create_payment` (fraud scoring → 3-5x lower rejection rate per RG 5286/2023)
25
+ - **VercelKVAuditLog** with day/actor/tenant indexes
26
+ - **Migration guide** vs official `mercadopago` SDK
27
+ - **+1 tool** (`validate_tax_id`) → 87 total
28
+ - **284 tests pass** (was 245)
29
+
3
30
  ## 0.4.4
4
31
 
5
32
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ar-agents/mcp",
3
- "version": "0.4.4",
3
+ "version": "0.4.6",
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",
@@ -77,7 +77,7 @@
77
77
  {
78
78
  "name": "ESM",
79
79
  "path": "dist/index.js",
80
- "limit": "60 KB",
80
+ "limit": "80 KB",
81
81
  "ignore": [
82
82
  "@modelcontextprotocol/sdk",
83
83
  "node:crypto",
@@ -88,9 +88,24 @@
88
88
  "path",
89
89
  "node:child_process",
90
90
  "node:url",
91
+ "url",
91
92
  "node:util",
92
93
  "node:http",
94
+ "http",
93
95
  "node:https",
96
+ "https",
97
+ "node:stream",
98
+ "stream",
99
+ "node:zlib",
100
+ "zlib",
101
+ "node:buffer",
102
+ "buffer",
103
+ "node:events",
104
+ "events",
105
+ "node:net",
106
+ "net",
107
+ "node:tls",
108
+ "tls",
94
109
  "node-forge"
95
110
  ]
96
111
  }