@mcpc-tech/core 0.2.13 → 0.2.14
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/index.mjs +1 -1
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -3598,7 +3598,7 @@ var ToolManager = class {
|
|
|
3598
3598
|
getRegisteredToolsAsComposed() {
|
|
3599
3599
|
const composedTools = {};
|
|
3600
3600
|
for (const [name, tool] of this.toolRegistry.entries()) {
|
|
3601
|
-
if (this.toolConfigs.get(name)?.visibility?.public) {
|
|
3601
|
+
if (this.toolConfigs.get(name)?.visibility?.public === true) {
|
|
3602
3602
|
continue;
|
|
3603
3603
|
}
|
|
3604
3604
|
composedTools[name] = {
|