- 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>
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
/**
|
|
* WHOOSH Resources
|
|
*
|
|
* Defines MCP resources that expose WHOOSH cluster state and real-time data
|
|
*/
|
|
import { Resource } from '@modelcontextprotocol/sdk/types.js';
|
|
import { WHOOSHClient } from './whoosh-client.js';
|
|
export declare class WHOOSHResources {
|
|
private whooshClient;
|
|
constructor(whooshClient: WHOOSHClient);
|
|
getAllResources(): Promise<Resource[]>;
|
|
readResource(uri: string): Promise<{
|
|
contents: Array<{
|
|
type: string;
|
|
text?: string;
|
|
data?: string;
|
|
mimeType?: string;
|
|
}>;
|
|
}>;
|
|
private getClusterStatusResource;
|
|
private getAgentsResource;
|
|
private getActiveTasksResource;
|
|
private getCompletedTasksResource;
|
|
private getWorkflowsResource;
|
|
private getExecutionsResource;
|
|
private getMetricsResource;
|
|
private getCapabilitiesResource;
|
|
private groupAgentsBySpecialty;
|
|
private formatTaskForResource;
|
|
private analyzeTaskQueue;
|
|
private calculateTaskMetrics;
|
|
private summarizeExecutionStatuses;
|
|
private calculateDuration;
|
|
}
|
|
//# sourceMappingURL=whoosh-resources.d.ts.map
|