UNPKG

universal-mcp-orchestration

Version:

šŸ† UNIVERSAL AI DEVELOPMENT SYSTEM: 100% OPTIMIZED! Complete plug-and-play MCP orchestration with 20/20 agents operational, 101MB optimization, zero-error operations, and enterprise-grade reliability. Works with ANY project type at ANY scale.

168 lines (132 loc) • 5.35 kB
# šŸ¤– Universal MCP Orchestration Agents ## šŸŒ Available to 10+ Million Developers Worldwide ```bash npm install -g universal-mcp-orchestration@latest ``` ## šŸŽÆ CRITICAL: Two Different Agent Systems ### šŸ”· Claude Code Task Tool Agents **For**: Implementation, file operations, code analysis **Syntax**: `Task(subagent_type="agent-name", ...)` ### šŸ”¶ MCP Direct Function Calls **For**: Workflow coordination, specialized domain operations **Syntax**: `mcp__agent-name__function-name(...)` ## ⚔ Quick Start ### 1. Install & Verify ```bash npm install -g universal-mcp-orchestration@latest claude mcp list # Should show 20/20 agents ``` ### 2. Use Task Tool Agents (Most Common) ```bash # āœ… CORRECT - General implementation Task(subagent_type="general-purpose", description="Build React component", prompt="Create a responsive navigation component with dark mode toggle") # āœ… CORRECT - Architecture planning Task(subagent_type="architecture-agent", description="Design microservices architecture", prompt="Design scalable e-commerce platform with user auth and payments") # āœ… CORRECT - Documentation creation Task(subagent_type="documentation-agent", description="Create API documentation", prompt="Generate comprehensive REST API docs for user endpoints") ``` ### 3. Use MCP Direct Functions (Advanced) ```bash # āœ… CORRECT - Workflow coordination mcp__orchestration-manager__start_workflow( request="Build React dashboard with authentication", workflow_type="sequential" ) # āœ… CORRECT - DevOps operations mcp__devops__setup_ci_pipeline( platform="github_actions", project_type="node", stages=["build", "test", "deploy"] ) ``` ## šŸ“‹ Available Agents Reference ### šŸ”· Task Tool Agents ``` āœ… general-purpose - Any coding task, file operations āœ… architecture-agent - System design, technical planning āœ… documentation-agent - Creating docs, guides, README files āœ… knowledge-master-agent - Knowledge management, organization āœ… bible-agent - Project patterns, best practices āœ… context-agent - Understanding existing codebases āœ… api-agent - API design and implementation āœ… database-agent - Database operations and design āœ… hebrew-agent - Hebrew/Israeli localization āœ… accuracy-agent - Data validation and accuracy ``` ### šŸ”¶ MCP Direct Functions ``` āœ… mcp__orchestration-manager__* - Workflow coordination āœ… mcp__devops__* - Infrastructure & deployment āœ… mcp__architecture__* - System architecture info ``` ## āŒ Common Mistakes ```bash # āŒ WRONG - Don't mix syntaxes Task(subagent_type="mcp__orchestration-manager") # FAILS! # āŒ WRONG - These agents don't exist in Task tool Task(subagent_type="frontend-developer") # FAILS! Task(subagent_type="backend-engineer") # FAILS! # āœ… CORRECT - Use available Task tool agents Task(subagent_type="general-purpose", prompt="Create frontend React component...") # āœ… CORRECT - Use MCP direct calls mcp__orchestration-manager__create_agent_team( project_type="web_app", team_size=5 ) ``` ## šŸš€ Real-World Examples ### Build Full-Stack App ```bash # 1. Plan architecture Task(subagent_type="architecture-agent", prompt="Design social media platform with React, Node.js, PostgreSQL") # 2. Create development workflow mcp__orchestration-manager__start_workflow( request="Implement user authentication system", workflow_type="sequential" ) # 3. Set up deployment mcp__devops__setup_ci_pipeline( platform="github_actions", project_type="node" ) ``` ### Create Documentation System ```bash # 1. Analyze existing docs Task(subagent_type="knowledge-master-agent", prompt="Audit documentation gaps in our codebase") # 2. Generate comprehensive docs Task(subagent_type="documentation-agent", prompt="Create developer onboarding guide and API reference") ``` ## šŸ” Troubleshooting **Error**: `Agent type 'X' not found` **Fix**: Check available agents with error message or use `claude mcp list` **Error**: `object has no attribute 'create_output_file'` **Fix**: Update to latest: `npm update -g universal-mcp-orchestration` **Error**: `can't open file 'mcp_server.py'` **Fix**: Postinstall script auto-heals. If not, reinstall package. ## šŸ“Š Success Tips 1. **Start with Task tools** - Use for 90% of your needs 2. **Check availability** - Run `claude mcp list` to see what's active 3. **Use MCP functions sparingly** - For specialized coordination only 4. **Update regularly** - `npm update -g universal-mcp-orchestration` 5. **Read error messages** - They show available agents ## šŸŽÆ Quick Reference Card | Need | Use This | Example | |------|----------|---------| | Code implementation | `Task(subagent_type="general-purpose")` | React components, API endpoints | | System design | `Task(subagent_type="architecture-agent")` | Database schema, microservices | | Documentation | `Task(subagent_type="documentation-agent")` | README, API docs, guides | | Workflow coordination | `mcp__orchestration-manager__*` | Multi-agent workflows | | DevOps operations | `mcp__devops__*` | CI/CD, Kubernetes, monitoring | --- šŸš€ **Ready to use Universal MCP Orchestration!** šŸ“– **Need more details?** See `COMPLETE_MCP_USAGE_GUIDE.md`