Files
hive/mcp-server/dist/hive-tools.d.ts
anthonyrawlins f3cbb5c6f7 Add environment configuration and local development documentation
- 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>
2025-07-10 18:20:52 +10:00

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