@cpod/sdk - v0.2.7
    Preparing search index...

    Function getAllMCPTools

    • Get all available MCP tools across all servers

      Parameters

      • Optionaloptions: GetAllToolsOptions

      Returns Promise<ListMCPToolsResponse>

      Array of MCP tools

      401 - Not authenticated

      import { getAllMCPTools } from "@cpod/sdk";

      const tools = await getAllMCPTools();
      tools.forEach(tool => {
      console.log(`${tool.name}: ${tool.description}`);
      });