Skip to main content

getMentionedToolBoxes

codebolt.tool.getMentionedToolBoxes(userMessage: UserMessage): Promise<undefined>
Extracts toolbox mentions from a user message object.

Parameters

NameTypeDescription
userMessageUserMessageMessage object containing user input with toolbox mentions

Example

const message = {
content: "Please use @analyticsTools and @dataProcessing",
mentionedMCPs: ["analyticsTools", "dataProcessing"]
};
const mentioned = await codebolt.codebolttools.getMentionedToolBoxes(message);
console.log("Mentioned ToolBoxes:", mentioned);