-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
54 lines (49 loc) · 1.23 KB
/
Copy pathsetup.sh
File metadata and controls
54 lines (49 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
# Skill Orchestrator MCP - Quick Setup Script
# Run this to install and configure the MCP server
set -e
echo "🚀 Setting up Skill Orchestrator MCP..."
# Check if uv is available
if command -v uv &> /dev/null; then
echo "✅ Using uv for installation"
uv pip install -e .
else
echo "⚠️ uv not found, using pip"
pip install -e .
fi
# Install built-in skills
echo "📦 Installing built-in skills..."
python -c "from skill_orchestrator_mcp.builtin_skills import install_builtin_skills; install_builtin_skills()"
# Show configuration instructions
echo ""
echo "✅ Installation complete!"
echo ""
echo "📝 To configure Claude Desktop, add this to your config:"
echo ""
cat << 'EOF'
{
"mcpServers": {
"skill-orchestrator": {
"command": "skill-orchestrator-mcp"
}
}
}
EOF
echo ""
echo "Or for development with uvx:"
echo ""
cat << 'EOF'
{
"mcpServers": {
"skill-orchestrator": {
"command": "uvx",
"args": ["--from", "FULL_PATH_TO_THIS_DIR", "skill-orchestrator-mcp"]
}
}
}
EOF
echo ""
echo "📁 Skills stored at: ~/.skill_orchestrator/skills"
echo "📁 State stored at: ~/.skill_orchestrator/state"
echo ""
echo "🎉 Ready to go! Restart Claude Desktop to load the new server."