We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/github/github-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build-ui•302 B
#!/bin/bash
# Build the MCP App UIs
set -e
cd "$(dirname "$0")/../ui"
# Install dependencies if needed
if [ ! -d "node_modules" ]; then
echo "Installing UI dependencies..."
npm install
fi
echo "Building UI..."
npm run build
echo "UI build complete. Output:"
ls -la ../pkg/github/ui_dist/*.html