mcp-crypto-toolkit 1.2.1 → 1.2.3
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 +18 -1
- package/README.md +6 -6
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.2.3] - 2026-09-03
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `mcpName` for Official MCP Registry ownership verification
|
|
15
|
+
- `server.json` (MCP Registry metadata)
|
|
16
|
+
- `glama.json` (Glama maintainer claim)
|
|
17
|
+
- `smithery.yaml` (Smithery one-click stdio install)
|
|
18
|
+
|
|
19
|
+
## [1.2.2] - 2026-09-03
|
|
20
|
+
|
|
21
|
+
### Fixed
|
|
22
|
+
|
|
23
|
+
- README community doc links on npm: point to GitHub URLs (files not included in the npm tarball)
|
|
24
|
+
|
|
10
25
|
## [1.2.1] - 2026-09-03
|
|
11
26
|
|
|
12
27
|
### Fixed
|
|
@@ -51,7 +66,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
51
66
|
- Binance P2P PKR path for conversions
|
|
52
67
|
- MIT license and README
|
|
53
68
|
|
|
54
|
-
[Unreleased]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.2.
|
|
69
|
+
[Unreleased]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.2.3...HEAD
|
|
70
|
+
[1.2.3]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.2.2...v1.2.3
|
|
71
|
+
[1.2.2]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.2.1...v1.2.2
|
|
55
72
|
[1.2.1]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.2.0...v1.2.1
|
|
56
73
|
[1.2.0]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.1.0...v1.2.0
|
|
57
74
|
[1.1.0]: https://github.com/nad33mahm3d/mcp-crypto-toolkit/compare/v1.0.0...v1.1.0
|
package/README.md
CHANGED
|
@@ -128,12 +128,12 @@ Without gas API keys, gas falls back to Blocknative then static estimates.
|
|
|
128
128
|
|
|
129
129
|
## Contributing
|
|
130
130
|
|
|
131
|
-
See [CONTRIBUTING.md](
|
|
131
|
+
See [CONTRIBUTING.md](https://github.com/nad33mahm3d/mcp-crypto-toolkit/blob/main/CONTRIBUTING.md) for setup, PR guidelines, and the release process.
|
|
132
132
|
|
|
133
|
-
- [Code of Conduct](
|
|
134
|
-
- [Security Policy](
|
|
135
|
-
- [Support](
|
|
136
|
-
- [Changelog](
|
|
133
|
+
- [Code of Conduct](https://github.com/nad33mahm3d/mcp-crypto-toolkit/blob/main/CODE_OF_CONDUCT.md)
|
|
134
|
+
- [Security Policy](https://github.com/nad33mahm3d/mcp-crypto-toolkit/blob/main/SECURITY.md)
|
|
135
|
+
- [Support](https://github.com/nad33mahm3d/mcp-crypto-toolkit/blob/main/SUPPORT.md)
|
|
136
|
+
- [Changelog](https://github.com/nad33mahm3d/mcp-crypto-toolkit/blob/main/CHANGELOG.md)
|
|
137
137
|
|
|
138
138
|
### Releasing (maintainers)
|
|
139
139
|
|
|
@@ -151,4 +151,4 @@ See [CONTRIBUTING.md](./CONTRIBUTING.md) for setup, PR guidelines, and the relea
|
|
|
151
151
|
|
|
152
152
|
## License
|
|
153
153
|
|
|
154
|
-
MIT — see [LICENSE](
|
|
154
|
+
MIT — see [LICENSE](https://github.com/nad33mahm3d/mcp-crypto-toolkit/blob/main/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-crypto-toolkit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
|
+
"mcpName": "io.github.nad33mahm3d/mcp-crypto-toolkit",
|
|
4
5
|
"description": "Live crypto prices, conversion, gas tracker, portfolio tools and calculators for AI agents - MCP Server",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|