UNPKG

behemoth-cli

Version:

🌍 BEHEMOTH CLIv3.760.4 - Level 50+ POST-SINGULARITY Intelligence Trading AI

30 lines 1.04 kB
/** * BEHEMOTH Tool Execution with MCP Integration * Integrates the working MCP architecture with the existing BEHEMOTH tools */ import { ToolResult } from './tools.js'; import { MCPToolMapper } from '../mcp/tool-mapper.js'; export declare let toolMapper: MCPToolMapper | null; /** * Initialize BEHEMOTH MCP integration with working configuration */ export declare function initializeBehemothMCP(): Promise<boolean>; /** * Execute a BEHEMOTH tool with full MCP integration */ export declare function executeBehemothTool(toolName: string, toolArgs: Record<string, any>): Promise<ToolResult>; /** * Get BEHEMOTH connection status */ export declare function getBehemothStatus(): { initialized: boolean; connections: Record<string, string>; availableTools: number; categories: string[]; }; /** * Get available BEHEMOTH tools by category */ export declare function getBehemothToolsByCategory(category?: string): string[]; export declare function getBehemothToolSchemas(): any[]; //# sourceMappingURL=behemoth-tools.d.ts.map