| name | setup-wizard |
| description | Use when the user needs to diagnose and install runtime environment dependencies (Python, Node.js, uv) for running LibrAgent or MCP servers. Use on new machines, MCP "command not found" errors, or missing Python/Node runtime failures. LibrAgent ์คํ์ ํ์ํ Python, Node.js ๋ฑ์ ํ๊ฒฝ์ ์๋์ผ๋ก ์ง๋จํ๊ณ ์ค์นํ๋๋ก ์๋ดํ๋ ๋ง๋ฒ์ฌ์
๋๋ค. |
| license | Complete terms in LICENSE.txt |
System Setup for MCP Servers
Automated installation and verification of MCP runtime dependencies.
Path conventions
Paths in this skill are relative to this skill's Base Directory. Replace <skill-base-dir> with its absolute path in commands.
Workflow
- Detect OS โ identify platform via terminal
- Check installations โ run verification commands below
- Install missing components โ use platform scripts or installation-guide.md
- Verify โ run
verify_setup script or manual checks; confirm Python 3.11+, Node 18+, uv available
Quick Verification
Windows (PowerShell):
Get-Command python -ErrorAction SilentlyContinue
Get-Command node -ErrorAction SilentlyContinue
Get-Command uv -ErrorAction SilentlyContinue
Linux/macOS:
which python3 && python3 --version
which node && node --version
which uv && uv --version
Report what is missing, then load only the relevant section from the installation guide.
Automated Scripts
Prefer scripts when the user wants hands-off install:
# Windows examples
& "<skill-base-dir>/scripts/verify_setup.ps1"
& "<skill-base-dir>/scripts/install_python.ps1"
& "<skill-base-dir>/scripts/install_node.ps1"
& "<skill-base-dir>/scripts/install_uv.ps1"
bash "<skill-base-dir>/scripts/verify_setup.sh"
bash "<skill-base-dir>/scripts/install_python.sh"
bash "<skill-base-dir>/scripts/install_node.sh"
bash "<skill-base-dir>/scripts/install_uv.sh"
Advanced Topics
Integration with LibrAgent
LibrAgent MCP servers require:
- Python 3.11+ for Python-based MCP servers
- Node.js 18+ for TypeScript-based MCP servers
- uv for fast Python dependency management
After setup, re-run the verification script before retrying failed MCP servers.