getAllMCPTools()
getAllMCPTools():
Promise<MCPTool[]>
Defined in: packages/core/src/index.ts:3123
Get all available MCP tools across all servers
Returns
Promise<MCPTool[]>
Array of MCP tools
Throws
401 - Not authenticated
Example
import { getAllMCPTools } from "@cpod/sdk";
const tools = await getAllMCPTools();
tools.forEach(tool => {
console.log(`${tool.name}: ${tool.description}`);
});