- Parameterize CORS_ORIGINS in docker-compose.swarm.yml - Add .env.example with configuration options - Create comprehensive LOCAL_DEVELOPMENT.md guide - Update README.md with environment variable documentation - Provide alternatives for local development without production domain 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
878 B
TypeScript
30 lines
878 B
TypeScript
/**
|
|
* Hive Tools
|
|
*
|
|
* Defines MCP tools that expose Hive operations to AI assistants
|
|
*/
|
|
import { Tool } from '@modelcontextprotocol/sdk/types.js';
|
|
import { HiveClient } from './hive-client.js';
|
|
export declare class HiveTools {
|
|
private hiveClient;
|
|
constructor(hiveClient: HiveClient);
|
|
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 bringHiveOnline;
|
|
private registerCliAgent;
|
|
private getCliAgents;
|
|
private registerPredefinedCliAgents;
|
|
}
|
|
//# sourceMappingURL=hive-tools.d.ts.map
|