UNPKG

claude-flow

Version:

Ruflo - Enterprise AI agent orchestration for Claude Code. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration

26 lines 637 B
/** * V3 MCP Configuration Tools * * MCP tools for configuration management: * - config/load - Load configuration * - config/save - Save configuration * - config/validate - Validate configuration * * Implements ADR-005: MCP-First API Design */ import { MCPTool } from '../types.js'; /** * config/load tool */ export declare const loadConfigTool: MCPTool; /** * config/save tool */ export declare const saveConfigTool: MCPTool; /** * config/validate tool */ export declare const validateConfigTool: MCPTool; export declare const configTools: MCPTool[]; export default configTools; //# sourceMappingURL=config-tools.d.ts.map