Skip to main content

getLocalToolBoxes

codebolt.tool.getLocalToolBoxes(): Promise

Retrieves toolboxes installed in the local development environment.

Returns

  • Promise: A promise resolving to an array of locally available toolbox configurations

Response Structure

Array<{
name: string;
version?: string;
description?: string;
path?: string;
// Additional local toolbox properties
}>

Example

const codebolt = require('@codebolt/codeboltjs');


const localToolBoxes = await codebolt.mcp.getLocalToolBoxes();
console.log("Local ToolBoxes:", localToolBoxes);