cf-mcp 0.14.2 → 0.14.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/cf/mcp/server.rb +1 -1
- data/lib/cf/mcp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f93636ad4c9468a80315d49368037c7e653e44d3227e66ddf3880c3bd658a04e
|
|
4
|
+
data.tar.gz: 995a1c37a451572ca558c61f3c7036c1e485120d7d7f97ff7ba2301cf600f22b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be375c2b81d73ea8b35cb1271ba0179484ea93d37664e1794a5757099c698d82281c6a193554bc81411e4e21b4218a35cbbf69d33f567c58f9d10bec73c4389c
|
|
7
|
+
data.tar.gz: 05c74b135b578e6778913f80a5c7073f574ea59a02a4003b335686bd6e0aec8d8cc0402f6fc1dcce8c42c5e6f681397313c6902367eaf6315717e0e269b6767b
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.14.3] - 2026-01-26
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Added `sizes: ["any"]` to server icon metadata to comply with MCP icon specification
|
|
13
|
+
|
|
8
14
|
## [0.14.2] - 2026-01-26
|
|
9
15
|
|
|
10
16
|
### Added
|
|
@@ -181,6 +187,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
181
187
|
- `cf_list_category` - List items by category
|
|
182
188
|
- `cf_get_details` - Get full documentation by name
|
|
183
189
|
|
|
190
|
+
[0.14.3]: https://github.com/pusewicz/cf-mcp/compare/v0.14.2...v0.14.3
|
|
184
191
|
[0.14.2]: https://github.com/pusewicz/cf-mcp/compare/v0.14.1...v0.14.2
|
|
185
192
|
[0.14.1]: https://github.com/pusewicz/cf-mcp/compare/v0.14.0...v0.14.1
|
|
186
193
|
[0.13.1]: https://github.com/pusewicz/cf-mcp/compare/v0.13.0...v0.13.1
|
data/lib/cf/mcp/server.rb
CHANGED
|
@@ -74,7 +74,7 @@ module CF
|
|
|
74
74
|
version: CF::MCP::VERSION,
|
|
75
75
|
website_url: WEBSITE_URL,
|
|
76
76
|
icons: [
|
|
77
|
-
::MCP::Icon.new(src: "#{WEBSITE_URL}#{LOGO_PATH}", mime_type: "image/svg+xml")
|
|
77
|
+
::MCP::Icon.new(src: "#{WEBSITE_URL}#{LOGO_PATH}", mime_type: "image/svg+xml", sizes: ["any"])
|
|
78
78
|
],
|
|
79
79
|
tools: TOOLS,
|
|
80
80
|
resources: build_topic_resources(index)
|
data/lib/cf/mcp/version.rb
CHANGED