multi-agent-mcp / install.py
Cduplar's picture
Initial public release: Multi-Agent MCP Delegation Server
8b02e7c
Raw
History Blame Contribute Delete
290 Bytes
#!/usr/bin/env python3
"""Delegation MCP Installer - One-command setup."""
if __name__ == "__main__":
from src.delegation_mcp.installer import DelegationInstaller
import sys
installer = DelegationInstaller()
success = installer.install()
sys.exit(0 if success else 1)