We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/asachs01/float-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pre-commit•354 B
#!/bin/sh
echo "🔍 Running pre-commit checks..."
# Run lint-staged for formatting and linting on staged files
npx lint-staged
# Run full prettier check on all files
echo "🎨 Checking prettier formatting on all files..."
npx prettier --check .
# Run type checking
echo "🔧 Type checking..."
npm run typecheck
echo "✅ Pre-commit checks passed!"