We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/leolilley/mailcow_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
view-coverage.shβ’1.07 KiB
#!/bin/bash
# View Coverage Report Script
# Generates fresh coverage and opens HTML report
echo "π Generating fresh test coverage report..."
npm run test:coverage
echo ""
echo "π Coverage report generated!"
echo "π Location: coverage/index.html"
echo ""
echo "To view the interactive HTML report:"
echo "β’ Open coverage/index.html in your web browser"
echo "β’ Or run: open coverage/index.html (on macOS)"
echo "β’ Or run: xdg-open coverage/index.html (on Linux)"
echo ""
# Try to open automatically if on Linux with GUI
if command -v xdg-open > /dev/null; then
echo "π Attempting to open coverage report in browser..."
xdg-open coverage/index.html 2>/dev/null || echo "Could not auto-open. Please open coverage/index.html manually."
fi
echo ""
echo "π Current Coverage Summary:"
echo "β’ Overall: ~18% (needs improvement!)"
echo "β’ Auth: 70% (excellent β )"
echo "β’ Utils: 77% (excellent β )"
echo "β’ API: 0% (critical gap π¨)"
echo "β’ Tools: 0% (critical gap π¨)"
echo ""
echo "π― Priority: Add tests for API client and tool registry"