We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/minipuft/claude-prompts-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
validate-dist-fresh.sh•414 B
#!/bin/bash
# Validates that dist/index.js can be built and starts successfully
# Used in local development to verify build health
set -e
echo "Building bundled distribution..."
npm run build --silent
echo "Verifying startup..."
if timeout 5 node dist/index.js --startup-test 2>/dev/null; then
echo "✅ Build successful and starts correctly"
else
echo "❌ Build failed or startup test failed"
exit 1
fi