We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OrionLi545/claude-skills-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Build both frontend and backend packages
set -e
cd "$(dirname "$0")/.."
echo "================================================"
echo "Building Claude Skills MCP Packages"
echo "================================================"
echo ""
# Sync versions first
echo "Syncing versions from VERSION file..."
python3 scripts/sync-version.py
if [ $? -ne 0 ]; then
echo "Error: Version sync failed"
exit 1
fi
echo ""
# Clean previous builds
echo "Cleaning previous builds..."
rm -rf packages/frontend/dist packages/backend/dist
echo ""
# Build backend first
echo "Building backend (claude-skills-mcp-backend)..."
cd packages/backend
uv build
cd ../..
echo "✓ Backend built"
echo ""
# Build frontend
echo "Building frontend (claude-skills-mcp)..."
cd packages/frontend
uv build
cd ../..
echo "✓ Frontend built"
echo ""
echo "================================================"
echo "Build Complete!"
echo "================================================"
echo ""
echo "Backend artifacts:"
ls -lh packages/backend/dist/
echo ""
echo "Frontend artifacts:"
ls -lh packages/frontend/dist/
echo ""