mcp-crypto-toolkit 1.1.0 → 1.2.1
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 +19 -1
- package/README.md +1 -1
- package/package.json +6 -6
- package/dist/http.d.ts +0 -2
- package/dist/index.d.ts +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.2.1] - 2026-09-03
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- README demo GIF on npm: use GitHub-hosted URL instead of local `./demo.gif` (not included in the npm tarball)
|
|
15
|
+
|
|
16
|
+
## [1.2.0] - 2026-09-03
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Upgrade Zod to 4 (runtime dependency)
|
|
21
|
+
- Upgrade TypeScript to 7 and Vitest to 4 (dev)
|
|
22
|
+
- Require Node.js 20+ (`engines` and CI)
|
|
23
|
+
- GitHub Actions: checkout v7, setup-node v7
|
|
24
|
+
- Disable tsup DTS emit (TS 7 compatibility; JS bundles unchanged)
|
|
25
|
+
|
|
10
26
|
## [1.1.0] - 2026-09-03
|
|
11
27
|
|
|
12
28
|
### Added
|
|
@@ -35,6 +51,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
35
51
|
- Binance P2P PKR path for conversions
|
|
36
52
|
- MIT license and README
|
|
37
53
|
|
|
38
|
-
[Unreleased]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.1
|
|
54
|
+
[Unreleased]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.2.1...HEAD
|
|
55
|
+
[1.2.1]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.2.0...v1.2.1
|
|
56
|
+
[1.2.0]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.1.0...v1.2.0
|
|
39
57
|
[1.1.0]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.0.0...v1.1.0
|
|
40
58
|
[1.0.0]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/releases/tag/v1.0.0
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-crypto-toolkit",
|
|
3
|
-
"version": "1.1
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Live crypto prices, conversion, gas tracker, portfolio tools and calculators for AI agents - MCP Server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -55,16 +55,16 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|
|
58
|
-
"node": ">=
|
|
58
|
+
"node": ">=20"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
62
|
-
"zod": "^
|
|
62
|
+
"zod": "^4.5.4"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@types/node": "^
|
|
65
|
+
"@types/node": "^26.4.0",
|
|
66
66
|
"tsup": "^8.0.0",
|
|
67
|
-
"typescript": "^
|
|
68
|
-
"vitest": "^
|
|
67
|
+
"typescript": "^7.0.2",
|
|
68
|
+
"vitest": "^4.1.11"
|
|
69
69
|
}
|
|
70
70
|
}
|
package/dist/http.d.ts
DELETED
package/dist/index.d.ts
DELETED