@utaba/ucm-mcp-server 6.0.0 → 6.1.0
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.
|
@@ -5,7 +5,7 @@ import { QuickstartTool } from '../tools/utility/QuickstartTool.js';
|
|
|
5
5
|
import { AuthorIndexTool } from '../tools/utility/AuthorIndexTool.js';
|
|
6
6
|
import { AuthorRecentsTool } from '../tools/utility/AuthorRecentsTool.js';
|
|
7
7
|
import { ListRepositoriesTool } from '../tools/utility/ListRepositoriesTool.js';
|
|
8
|
-
import { SubmitFeedbackTool } from '../tools/utility/SubmitFeedbackTool.js';
|
|
8
|
+
// import { SubmitFeedbackTool } from '../tools/utility/SubmitFeedbackTool.js'; // removed — tool disabled
|
|
9
9
|
// Import core tools
|
|
10
10
|
import { GetArtifactTool } from '../tools/core/GetArtifactTool.js';
|
|
11
11
|
import { GetChunkTool } from '../tools/core/GetChunkTool.js';
|
|
@@ -58,7 +58,7 @@ export class ToolRegistry {
|
|
|
58
58
|
this.registerTool(new AuthorIndexTool(this.ucmClient, this.logger, this.authorId));
|
|
59
59
|
this.registerTool(new AuthorRecentsTool(this.ucmClient, this.logger, this.authorId));
|
|
60
60
|
this.registerTool(new ListRepositoriesTool(this.ucmClient, this.logger, this.authorId));
|
|
61
|
-
this.registerTool(new SubmitFeedbackTool(this.ucmClient, this.logger, this.authorId));
|
|
61
|
+
// this.registerTool(new SubmitFeedbackTool(this.ucmClient, this.logger, this.authorId)); // removed — tool disabled
|
|
62
62
|
// Register core tools
|
|
63
63
|
this.registerTool(new GetArtifactTool(this.ucmClient, this.logger, this.authorId, this.trustedAuthors));
|
|
64
64
|
this.registerTool(new GetChunkTool(this.ucmClient, this.logger, this.authorId));
|
package/package.json
CHANGED