mcp-ai-agent-guidelines
Version:
A comprehensive Model Context Protocol server providing advanced tools, resources, and prompts for implementing AI agent best practices
39 lines • 1.1 kB
TypeScript
/**
* Agent Orchestrator Tool
*
* High-level MCP tool for Agent-to-Agent (A2A) orchestration.
* Enables declarative workflow execution using registered tools.
*
* Features:
* - Execute pre-defined workflow templates
* - Custom workflow execution from user-provided plans
* - Automatic context management and tracing
* - Error handling with fallback strategies
* - Execution visualization and reporting
*/
/**
* Workflow template identifier
*/
export type WorkflowTemplate = "quality-audit" | "security-scan" | "code-analysis-pipeline" | "documentation-generation";
/**
* Agent Orchestrator Tool
*
* Orchestrates multi-tool workflows with A2A chaining capabilities.
*
* @param args - Orchestrator configuration
* @returns Workflow execution result with trace and summary
*/
export declare function agentOrchestrator(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
isError?: undefined;
} | {
content: {
type: string;
text: string;
}[];
isError: boolean;
}>;
//# sourceMappingURL=agent-orchestrator.d.ts.map