We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/masseater/n8n-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
add-ts-nocheck.sh•427 B
#!/bin/bash
# Add @ts-nocheck to all generated TypeScript files
find src/generated -name "*.ts" -type f | while read -r file; do
# Check if file already has @ts-nocheck
if ! head -n 1 "$file" | grep -q "@ts-nocheck"; then
# Add @ts-nocheck at the beginning
echo "// @ts-nocheck" > "$file.tmp"
cat "$file" >> "$file.tmp"
mv "$file.tmp" "$file"
echo "Added @ts-nocheck to $file"
fi
done
echo "Done!"