@ar-agents/mcp 0.4.5 → 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.
- package/CHANGELOG.md +14 -0
- package/package.json +17 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
3
17
|
## 0.4.5
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ar-agents/mcp",
|
|
3
|
-
"version": "0.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": "
|
|
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
|
}
|