We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rwese/mcp-backlog'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pre-commit•416 B
#!/bin/bash
# Pre-commit hook for mcp-backlog
# Runs build and tests before allowing commit
echo "Running pre-commit checks..."
# Run build
echo "Building..."
bun run build
if [ $? -ne 0 ]; then
echo "Build failed. Commit aborted."
exit 1
fi
# Run tests
echo "Running tests..."
bun test
if [ $? -ne 0 ]; then
echo "Tests failed. Commit aborted."
exit 1
fi
echo "Pre-commit checks passed!"
exit 0