From hive
Query Supabase database and manage projects via MCP. Use when user needs database queries, migrations, auth operations, or logs. Triggers on SQL, table names, auth, migrations.
npx claudepluginhub skywalking-dev/hiveThis skill is limited to using the following tools:
Interact with Supabase projects via the Supabase MCP server.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Interact with Supabase projects via the Supabase MCP server.
.mcp.jsonmcp__supabase__execute_sql
Run SQL queries against the database.
mcp__supabase__list_migrations
View migration history and status.
mcp__supabase__get_logs
Fetch project logs (API, auth, functions).
mcp__supabase__generate_typescript_types
Generate TypeScript types from database schema.
LIMIT on SELECT queries-- List recent users
SELECT id, email, created_at
FROM auth.users
ORDER BY created_at DESC
LIMIT 20;
-- Check table schema
SELECT column_name, data_type, is_nullable
FROM information_schema.columns
WHERE table_name = 'your_table';
-- Count by status
SELECT status, COUNT(*)
FROM orders
GROUP BY status;
| Table | Purpose |
|---|---|
auth.users | User accounts |
public.profiles | User profiles |
public.organizations | Orgs/tenants |
Use mcp__supabase__get_logs with service filter:
api - API gateway logsauth - Authentication logsfunctions - Edge function logspostgres - Database logs