Coverage for src / mcp_server_langgraph / patterns / __init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.12.0, created at 2025-12-03 00:43 +0000
« prev ^ index » next coverage.py v7.12.0, created at 2025-12-03 00:43 +0000
1"""
2Multi-Agent Patterns for MCP Server with LangGraph
4Production-ready multi-agent coordination patterns:
5- Supervisor: One agent delegates to specialized workers
6- Swarm: Parallel execution with result aggregation
7- Hierarchical: Multi-level delegation chains
8- Sequential: Ordered agent pipeline
10These patterns enable complex agent workflows and team-based AI systems.
11"""
13from .hierarchical import HierarchicalCoordinator
14from .supervisor import Supervisor
15from .swarm import Swarm
17__all__ = ["HierarchicalCoordinator", "Supervisor", "Swarm"]