@@ -21,7 +21,7 @@ const codeboltMCP = {
2121 *
2222 * @returns Promise with the enabled toolboxes data
2323 */
24- getEnabledToolBoxes : ( ) : Promise < GetEnabledToolBoxesResponse > => {
24+ getEnabledMCPServers : ( ) : Promise < GetEnabledToolBoxesResponse > => {
2525 return cbws . messageManager . sendAndWaitForResponse (
2626 {
2727 "type" : "codebolttools" ,
@@ -36,7 +36,7 @@ const codeboltMCP = {
3636 *
3737 * @returns Promise with the local toolboxes data
3838 */
39- getLocalToolBoxes : ( ) : Promise < GetLocalToolBoxesResponse > => {
39+ getLocalMCPServers : ( ) : Promise < GetLocalToolBoxesResponse > => {
4040 return cbws . messageManager . sendAndWaitForResponse (
4141 {
4242 "type" : "codebolttools" ,
@@ -52,7 +52,7 @@ const codeboltMCP = {
5252 * @param userMessage - The user message to extract mentions from
5353 * @returns Promise with the mentioned toolboxes
5454 */
55- getMentionedToolBoxes : ( userMessage : UserMessage ) : Promise < GetAvailableToolBoxesResponse > => {
55+ getMentionedMCPServers : ( userMessage : UserMessage ) : Promise < GetAvailableToolBoxesResponse > => {
5656 return cbws . messageManager . sendAndWaitForResponse (
5757 {
5858 "type" : "codebolttools" ,
@@ -68,7 +68,7 @@ const codeboltMCP = {
6868 * @param query - The search query string
6969 * @returns Promise with matching toolboxes data
7070 */
71- searchAvailableToolBoxes : ( query : string ) : Promise < SearchAvailableToolBoxesResponse > => {
71+ searchAvailableMCPServers : ( query : string ) : Promise < SearchAvailableToolBoxesResponse > => {
7272 return cbws . messageManager . sendAndWaitForResponse (
7373 {
7474 "type" : "codebolttools" ,
@@ -85,7 +85,7 @@ const codeboltMCP = {
8585 * @param toolBoxes - Array of toolbox names to list tools from
8686 * @returns Promise with tools from the specified toolboxes
8787 */
88- listToolsFromToolBoxes : ( toolBoxes : string [ ] ) : Promise < ListToolsFromToolBoxesResponse > => {
88+ listMcpFromServers : ( toolBoxes : string [ ] ) : Promise < ListToolsFromToolBoxesResponse > => {
8989 return cbws . messageManager . sendAndWaitForResponse (
9090 {
9191 "type" : "codebolttools" ,
@@ -103,7 +103,7 @@ const codeboltMCP = {
103103 * @param config - Configuration object for the toolbox
104104 * @returns Promise with the configuration result
105105 */
106- configureToolBox : ( name : string , config : any ) : Promise < ConfigureToolBoxResponse > => {
106+ configureMCPServer : ( name : string , config : any ) : Promise < ConfigureToolBoxResponse > => {
107107 return cbws . messageManager . sendAndWaitForResponse (
108108 {
109109 "type" : "codebolttools" ,
0 commit comments