- Migrated from HIVE branding to WHOOSH across all components - Enhanced backend API with new services: AI models, BZZZ integration, templates, members - Added comprehensive testing suite with security, performance, and integration tests - Improved frontend with new components for project setup, AI models, and team management - Updated MCP server implementation with WHOOSH-specific tools and resources - Enhanced deployment configurations with production-ready Docker setups - Added comprehensive documentation and setup guides - Implemented age encryption service and UCXL integration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
898 B
TypeScript
30 lines
898 B
TypeScript
/**
|
|
* WHOOSH Tools
|
|
*
|
|
* Defines MCP tools that expose WHOOSH operations to AI assistants
|
|
*/
|
|
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
import { WHOOSHClient } from './whoosh-client.js';
|
|
export declare class WHOOSHTools {
|
|
private whooshClient;
|
|
constructor(whooshClient: WHOOSHClient);
|
|
getAllTools(): Tool[];
|
|
executeTool(name: string, args: Record<string, any>): Promise<any>;
|
|
private getAgents;
|
|
private registerAgent;
|
|
private createTask;
|
|
private getTask;
|
|
private getTasks;
|
|
private getWorkflows;
|
|
private createWorkflow;
|
|
private executeWorkflow;
|
|
private getClusterStatus;
|
|
private getMetrics;
|
|
private getExecutions;
|
|
private coordinateDevelopment;
|
|
private bringWHOOSHOnline;
|
|
private registerCliAgent;
|
|
private getCliAgents;
|
|
private registerPredefinedCliAgents;
|
|
}
|
|
//# sourceMappingURL=whoosh-tools.d.ts.map
|