blink-backend
Installation
SKILL.md
MCP Tools
blink_backend_status · blink_backend_deploy · blink_backend_logs
When to Use
- Prefer SDK for auth, db, storage, AI (~95% of cases)
- Use backend for: webhooks, server-side secrets, third-party callbacks, heavy processing
- Never create a backend just for CRUD — use
blink.dbinstead
Getting Started
# Check backend eligibility (Pro/Max/Team)
blink backend status
# Create the entry point
mkdir -p backend
# Write backend/index.ts (see below)