/** * Agent Tools - MCP Tools for Agent Management * * Provides tools for: * - Agent Definitions (templates) * - Agent Instances (running deployments) * - Agent Workflows (graphs with nodes and edges) * - Workflow Executions (execution history and traces) */ import { MCPToolDefinition, MCPToolResult } from './src/types/mcp-types'; export declare const agentToolDefinitions: MCPToolDefinition[]; export declare class AgentTools { private static instance; private client; constructor(registryUrl: string, apiKey: string); static getInstance(registryUrl?: string, apiKey?: string): AgentTools; getTools(): MCPToolDefinition[]; executeTool(toolName: string, args: Record): Promise; private listDefinitions; private getDefinition; private createDefinition; private listInstances; private getInstance; private getInstanceTrace; private listWorkflows; private getWorkflow; private getWorkflowGraph; private createWorkflow; private assignToWorkflow; private checkWorkflowReady; private executeWorkflow; private deleteWorkflow; private listExecutions; private getExecution; private getExecutionTrace; } export default AgentTools; //# sourceMappingURL=agent-tools.d.ts.map