Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.17.1] - 2026-02-09

### Fixed

- Fix tool name reference in web UI script.js (changed `cf_get_topic` to `get_topic` to match current tool naming)

## [0.17.0] - 2026-02-09

### Added
Expand Down Expand Up @@ -277,6 +283,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `cf_list_category` - List items by category
- `cf_get_details` - Get full documentation by name

[0.17.1]: https://github.com/pusewicz/cf-mcp/compare/v0.17.0...v0.17.1
[0.17.0]: https://github.com/pusewicz/cf-mcp/compare/v0.16.2...v0.17.0
[0.16.2]: https://github.com/pusewicz/cf-mcp/compare/v0.16.1...v0.16.2
[0.16.1]: https://github.com/pusewicz/cf-mcp/compare/v0.16.0...v0.16.1
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
cf-mcp (0.17.0)
cf-mcp (0.17.1)
mcp (~> 0.6)
puma (~> 7.1)
rack (~> 3.0)
Expand Down Expand Up @@ -117,7 +117,7 @@ CHECKSUMS
addressable (2.8.8) sha256=7c13b8f9536cf6364c03b9d417c19986019e28f7c00ac8132da4eb0fe393b057
ast (2.4.3) sha256=954615157c1d6a382bc27d690d973195e79db7f55e9765ac7c481c60bdb4d383
bigdecimal (4.0.1) sha256=8b07d3d065a9f921c80ceaea7c9d4ae596697295b584c296fe599dd0ad01c4a7
cf-mcp (0.17.0)
cf-mcp (0.17.1)
date (3.5.1) sha256=750d06384d7b9c15d562c76291407d89e368dda4d4fff957eb94962d325a0dc0
erb (6.0.1) sha256=28ecdd99c5472aebd5674d6061e3c6b0a45c049578b071e5a52c2a7f13c197e5
io-console (0.8.2) sha256=d6e3ae7a7cc7574f4b8893b4fca2162e57a825b223a177b7afa236c5ef9814cc
Expand Down
4 changes: 2 additions & 2 deletions lib/cf/mcp/templates/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function FormField({ name, propDef, required, value, onChange, toolName }) {
} else if (name === 'category') {
input = renderSelect(id, value, handleChange, required, '-- All Categories --',
CATEGORIES.map(cat => html`<option value=${cat}>${cat}</option>`));
} else if (name === 'name' && toolName === 'cf_get_topic') {
} else if (name === 'name' && toolName === 'get_topic') {
input = renderSelect(id, value, handleChange, required, '-- Select Topic --', renderTopicOptions());
} else {
input = html`
Expand Down Expand Up @@ -260,7 +260,7 @@ function TopicsExplorer() {
const value = e.target.value;
setSelectedTopic(value);
if (value) {
callTool('cf_get_topic', { name: value }, 'Loading topic...');
callTool('get_topic', { name: value }, 'Loading topic...');
} else {
reset();
}
Expand Down
2 changes: 1 addition & 1 deletion lib/cf/mcp/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module CF
module MCP
VERSION = "0.17.0"
VERSION = "0.17.1"
end
end