@ar-agents/mcp 0.4.5 → 0.4.7

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 +21 -0
  2. package/package.json +21 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Picks up `@ar-agents/mercadopago@0.13.0` (`VercelKVRateLimiter` for
8
+ distributed rate limiting in serverless).
9
+
10
+ ## 0.4.6
11
+
12
+ ### Patch Changes
13
+
14
+ - Picks up `@ar-agents/mercadopago@0.12.0` (idempotency-by-default) and
15
+ `@ar-agents/whatsapp@0.2.0` (`scopedTo` mode for agent-hijacking
16
+ prevention).
17
+ - **19 new registry tests** (`test/registries.test.ts`) covering both
18
+ configured and unconfigured paths for every registry factory:
19
+ identity, banking, mercadopago, whatsapp, shipping, facturacion,
20
+ identity-attest. Honest coverage now at 74%/48%/92%/74% (was
21
+ 66%/26%/88%/66% with the previous threshold relaxation).
22
+ - Coverage thresholds raised to match the new floor: 70/45/90/70.
23
+
3
24
  ## 0.4.5
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ar-agents/mcp",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
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",
@@ -26,6 +26,10 @@
26
26
  ],
27
27
  "license": "MIT",
28
28
  "author": "Nazareno Clemente <naza@helloastro.co>",
29
+ "funding": {
30
+ "type": "github",
31
+ "url": "https://github.com/sponsors/naza00000"
32
+ },
29
33
  "homepage": "https://github.com/ar-agents/ar-agents/tree/main/packages/mcp",
30
34
  "repository": {
31
35
  "type": "git",
@@ -77,7 +81,7 @@
77
81
  {
78
82
  "name": "ESM",
79
83
  "path": "dist/index.js",
80
- "limit": "60 KB",
84
+ "limit": "80 KB",
81
85
  "ignore": [
82
86
  "@modelcontextprotocol/sdk",
83
87
  "node:crypto",
@@ -88,9 +92,24 @@
88
92
  "path",
89
93
  "node:child_process",
90
94
  "node:url",
95
+ "url",
91
96
  "node:util",
92
97
  "node:http",
98
+ "http",
93
99
  "node:https",
100
+ "https",
101
+ "node:stream",
102
+ "stream",
103
+ "node:zlib",
104
+ "zlib",
105
+ "node:buffer",
106
+ "buffer",
107
+ "node:events",
108
+ "events",
109
+ "node:net",
110
+ "net",
111
+ "node:tls",
112
+ "tls",
94
113
  "node-forge"
95
114
  ]
96
115
  }