Read-only inspection of the ImageLink database via the Supabase MCP (local):
Use this skill to understand the current state of the database with the Supabase MCP without modifying data or the schema.
This procedure is read-only and is used for:
apply_migration from MCP.supabase migration new migration_namesupabase migration upsupabase db resetIf the user asks to change the schema or data, redirect to migrations and the modifying-database skill.
MCP Server: project-0-image-link-local-database
Use the enabled Supabase local database MCP. Before calling a tool, read its JSON schema under .cursor/.../mcps/<server>/tools/<tool>.json so arguments match exactly (e.g. list_tables requires schemas and verbose).
Recommended tools for reading:
list_tables: List tables by schemalist_migrations: Review the status of applied migrationslist_extensions: Inspect enabled extensionsget_logs: Diagnose problems by service (postgres, api, auth, etc.)get_advisors: Review security/performance recommendationsexecute_sql: Only for SELECT or other read queriesForbidden for this skill
apply_migration: (prohibited by read-only policy)list_tableslist_migrationslist_extensionsexecute_sql with read queries (SELECT).get_logsget_advisorsAllowed:
SELECT ...information_schema, pg_catalog)EXPLAIN on read queriesNot allowed:
INSERT, UPDATE, DELETECREATE, ALTER, DROP, TRUNCATEGRANT, REVOKE, COMMENTexecute_sql, validate that it is read-onlyapply_migration via MCP