150,000+ agents registered. Trust scores show their math.Explore →
Explorer/MCP/node2flow/supabase
REMOTE

Supabase

node2flow/supabase

MCP server for Supabase — 31 tools for database CRUD, storage, auth admin, project management, edge functions, and secrets via REST + Management APIs. ## Features - Database CRUD with PostgREST filtering, resource embedding (JOINs), and RPC - Storage bucket and object management with signed URLs - Auth admin for user creation, updates, bans, and deletion - Project lifecycle management (create, pause, restore) - Execute SQL queries and generate TypeScript types - Edge function inspection and secret/API key management ## 31 Tools - **Database REST (6):** sb_list_records, sb_insert_records, sb_update_records, sb_upsert_records, sb_delete_records, sb_call_function - **Storage (6):** sb_list_buckets, sb_create_bucket, sb_delete_bucket, sb_list_objects, sb_delete_objects, sb_create_signed_url - **Auth Admin (5):** sb_list_users, sb_get_user, sb_create_user, sb_update_user, sb_delete_user - **Projects (5):** sb_list_projects, sb_get_project, sb_create_project, sb_pause_project, sb_restore_project - **Database Management (3):** sb_run_query, sb_list_migrations, sb_get_typescript_types - **Edge Functions (2):** sb_list_functions, sb_get_function - **Secrets & Keys (4):** sb_list_secrets, sb_create_secrets, sb_delete_secrets, sb_list_api_keys ## Configuration - `SUPABASE_URL` — Project URL (e.g. `https://xxx.supabase.co`) — for database, storage, auth tools - `SUPABASE_SERVICE_ROLE_KEY` — Service role key (bypasses RLS) — from Settings → API - `SUPABASE_ACCESS_TOKEN` — Personal access token — for project management tools (from dashboard → Account → Access Tokens)

31 tools available
The Journeyman
A reasonable amount of history and nothing concerning in the scan.
Time indexed (7mo)
31toolsRemote/ HTTP7moindexed
100% uptime · 316ms avgChecked Aug 14, 2026
Quality Score
69/95
Deep
Risk Score
0/100
Clean
How is this calculated?
Quality Breakdown
Tenure14.7/20
214 days indexed
Capability19.7/25
Tools: 7.7/13 (31 tools)
Description: 5/5
Endpoint: 7/7
Adoption9.2/25
Use count: 9.2/20 (202 uses)
Multi-registry: 0/5 (1 registry)
Reliability25/25
Currently live: 10/10
Uptime history: 15/15 100% (38/38 checks)
Security scan: 0 pts in v1.0; ready to weight when coverage improves
Risk
0Clean
No signals detected.
The scanner shows
31 tools. Nothing caught our attention.
First indexed Feb 14, 2026
Server Profile
Tools catalogued
31
31 tools available. Full list below.
Hosting
Remote / HTTP
Runs on the internet. No access to your filesystem, SSH keys, or environment variables.
Registry presence
Not verified
Not yet verified by the Official MCP Registry.
Liveness
100%
Based on 48 checks. Average response: 316ms.
Publisher Verification
Not yet verified by the Official MCP Registry.
Endpoint
https://supabase--node2flow.run.tools
Tools (31)
sb_list_records
List records from a Supabase table/view with PostgREST filtering, column selection, ordering, and pagination. Filter syntax: age=gt.18, status=eq.active, name=ilike.*john*, id=in.(1,2,3). Resource embedding (JOINs): select=*,orders(*)
sb_insert_records
Insert one or more records into a Supabase table. Pass a single object or an array of objects. Use return=representation to get the created records back.
sb_update_records
Update records in a Supabase table matching a filter. Filter is REQUIRED to prevent accidental full-table updates. Use return=representation to see what changed.
sb_upsert_records
Upsert (insert or update on conflict) records in a Supabase table. Uses merge-duplicates by default. Specify on_conflict for non-primary-key columns.
sb_delete_records
Delete records from a Supabase table matching a filter. Filter is REQUIRED to prevent accidental full-table deletion. Use sb_list_records first to verify which records will be deleted.
sb_call_function
Call a stored PostgreSQL function (RPC) in Supabase. Use method=GET for immutable functions, POST for volatile ones (default).
Show all 31 tools ↓
sb_list_buckets
List all storage buckets in the Supabase project. Returns bucket name, public status, size limits, and allowed MIME types.
sb_create_bucket
Create a new storage bucket in Supabase. Set public=true for publicly accessible files. Optionally set file size limit and allowed MIME types.
sb_delete_bucket
Delete a storage bucket from Supabase. The bucket must be empty before deletion. Use sb_delete_objects to remove files first.
sb_list_objects
List objects (files) in a Supabase storage bucket. Supports prefix filtering, pagination, and search.
sb_delete_objects
Delete one or more objects from a Supabase storage bucket. Provide an array of file paths to delete.
sb_create_signed_url
Create a temporary signed URL for a private storage object. The URL expires after the specified duration.
sb_list_users
List all users in the Supabase Auth system. Returns paginated results with user details including email, metadata, and creation date.
sb_get_user
Get a single user by ID from Supabase Auth. Returns full user details including metadata, identities, and last sign-in.
sb_create_user
Create a new user in Supabase Auth. Set email_confirm=true to skip email verification. Use app_metadata for admin-controlled data (roles, permissions).
sb_update_user
Update a user in Supabase Auth. Can change email, phone, password, metadata, or ban the user.
sb_delete_user
Delete a user from Supabase Auth. This permanently removes the user and all their auth data.
sb_list_projects
List all Supabase projects in your account. Returns project name, ref, region, status, and database info. Requires SUPABASE_ACCESS_TOKEN.
sb_get_project
Get details of a specific Supabase project by reference ID. Returns name, region, status, database host, and API URL.
sb_create_project
Create a new Supabase project. Requires organization ID, region, and database password. Project creation takes a few minutes.
sb_pause_project
Pause a Supabase project. Paused projects stop all services (database, auth, storage) and free up resources. Free tier projects auto-pause after inactivity.
sb_restore_project
Restore a paused Supabase project. Restarts all services including database, auth, and storage.
sb_run_query
Execute a SQL query on a Supabase project database via the Management API. Supports SELECT, INSERT, UPDATE, DELETE, CREATE TABLE, and all SQL. Returns query results as JSON.
sb_list_migrations
List database migrations for a Supabase project. Shows migration version, name, and status.
sb_get_typescript_types
Generate TypeScript type definitions from the Supabase project database schema. Useful for type-safe database access.
sb_list_functions
List all Edge Functions deployed to a Supabase project. Returns function slug, name, status, and creation date.
sb_get_function
Get details of a specific Edge Function by slug. Returns function metadata, status, version, and entry point.
sb_list_secrets
List all secrets (environment variables) for a Supabase project. Returns secret names only (values are never exposed).
sb_create_secrets
Create or update secrets (environment variables) for a Supabase project. If a secret with the same name exists, it will be overwritten.
sb_delete_secrets
Delete secrets (environment variables) from a Supabase project by name.
sb_list_api_keys
List API keys for a Supabase project. Returns anon key, service_role key, and any custom keys with their names and roles.

Is this your server?

Create a free RNWY account to connect your on-chain identity to this server. MCP server claiming is coming; register now and you'll be first in line.

Create your account →
More from node2flow
WordPress
MCP server for WordPress REST API — manage posts, pages, media, comments, taxonomy, and users. ## Features - Full CRUD for posts, pages, comments, and media - Taxonomy management (categories, tags) - User and site information - HTTP Basic Auth with Application Passwords ## 20 Tools **Posts**: create, list, get, update, delete posts **Pages**: create, list, get, update, delete pages **Media**: list media, upload from URL **Comments**: create, list, get, update comments **Taxonomy**: manage categories and tags **Users & Site**: get users, site settings ## Configuration - WORDPRESS_URL — Your WordPress site URL - WORDPRESS_USERNAME — WordPress username - WORDPRESS_APP_PASSWORD — Application Password (Settings > Users > Application Passwords)
Gemini File Search
MCP server for Google's Gemini File Search and RAG (Retrieval-Augmented Generation). ## Features - Create and manage File Search stores - Upload documents (text, PDF, base64) with custom metadata and chunking config - Import existing Gemini files into stores - Track upload/operation status - Query documents using RAG with model selection and metadata filtering ## 12 Tools **Store Management**: create, list, get, delete stores **Upload & Import**: upload content directly or import existing files **Operations**: check status of store/upload operations **Documents**: list, get, delete documents in stores **RAG Query**: query documents with Gemini models (supports metadata filters) ## Configuration - GEMINI_API_KEY — Get one at https://aistudio.google.com/apikey
Google Drive
MCP server for Google Drive API v3 : search, read, create, share, and manage files and folders. ## Features - Search files with powerful query syntax (name, type, folder, date, full-text) - Read text file content and export Google Workspace files (Docs, Sheets, Slides) - Create, copy, rename, move, star, trash, and permanently delete files - Share files with users, groups, domains, or make public with role-based access - Add comments and threaded replies on files, resolve comment threads - Manage shared drives (create, list, delete) - View file revision history and storage quota ## 23 Tools - **Files (10):** search, get metadata, read content, create, update, copy, delete, export, create folder, empty trash - **Permissions (3):** list permissions, share file, unshare file - **Comments (3):** list, create, delete comments - **Replies (2):** list, create replies (with resolve/reopen actions) - **Shared Drives (3):** list, create, delete shared drives - **Revisions (1):** list file revision history - **About (1):** user info, storage quota, import/export formats ## Configuration - `GOOGLE_CLIENT_ID` : OAuth 2.0 Client ID from Google Cloud Console - `GOOGLE_CLIENT_SECRET` : OAuth 2.0 Client Secret - `GOOGLE_REFRESH_TOKEN` : Refresh token obtained via OAuth consent flow with `drive` scope (use Google OAuth Playground)
SQLite
Local MCP server for SQLite databases — query, manage schema, tables, indexes, and transactions through 15 tools. Install locally via npx only — each user gets their own database. Features: - Execute SQL queries and statements with parameter binding - Full schema management (tables, columns, indexes, foreign keys) - Database analysis (size, table stats, integrity check) - WAL mode enabled for better concurrency Install (Claude Desktop / Cursor): npx -y @node2flow/sqlite-mcp Tool categories: - Query (3): execute_query, execute_run, execute_many - Schema (4): list_tables, describe_table, list_indexes, list_foreign_keys - Table (3): create_table, alter_table, drop_table - Index (2): create_index, drop_index - Database (3): get_info, vacuum, integrity_check Configuration: - SQLITE_DB_PATH (required) — Path to your local SQLite database file - SQLITE_TIMEOUT (optional) — Busy timeout in milliseconds (default: 5000) Note: This is a local-only tool. Install via npx to use your own database files.
n8n-Management
MCP server for n8n workflow automation — manage workflows, executions, credentials, tags, and users. Features - Full workflow lifecycle (create, activate, execute, deactivate, delete) - Execution monitoring and debugging (list, inspect, retry, cleanup) - Credential management (create, update, rotate, schema lookup) - Tag-based workflow organization - User management with role control (owner permissions required) 27 Tools Workflows: list, get, create, update, delete, activate, deactivate, execute, get tags, update tags Executions: list, get, delete, retry Credentials: create, update, delete, get schema Tags: list, get, create, update, delete Users: list, get, delete, update role Configuration - N8N_URL — Your n8n instance URL (e.g. https://your-n8n.example.com) - N8N_API_KEY — API key from n8n Settings → API → Create API Key
Airtable
MCP server for Airtable API — manage records, bases, tables, fields, and webhooks. ## Features - Full CRUD for records with filtering, sorting, and pagination - Upsert records (update-or-create by matching fields) - Base and table schema management (create tables, add fields) - Webhook lifecycle (create, list, refresh, payloads, delete) - Batch operations (up to 10 records per request) ## 18 Tools **Records**: list, get, create, update, delete, upsert **Bases & Schema**: list bases, get schema, create base, create table, update table, create field, update field **Webhooks**: create, list, refresh, list payloads, delete ## Configuration - AIRTABLE_PAT — Personal Access Token from https://airtable.com/create/tokens
Similar servers
NodeAPI
Machine-native GIS processing API for AI agents and developers. Convert, reproject, validate, repair, buffer, clip, dissolve, and tile vector geodata across 25 endpoints. Pay-per-use USDC on Solana Mainnet ($0.01/op). No accounts, no API keys. Remote MCP SSE.
astllm-mcp
An MCP server for efficient code indexing and symbol retrieval using tree-sitter AST parsing to fetch specific functions or classes without loading entire files. It significantly reduces AI token costs by providing O(1) byte-offset access to code components across multiple programming languages.
Openterms-mcp
Cryptographic proof of consent for AI agents. Sign before you act. Policy engine enforces spending caps, action whitelists, and escalation rules. Independently verifiable by anyone.
Aegis-ZK
On-chain trust verification for AI agent tools. Agents query skill attestations, audit levels, and risk scores before running third-party MCP servers, so you know what's safe before you execute.
Satoshidata Wallet Intelligence
Bitcoin wallet intelligence for AI agents: labels, risk signals, transactions, fees, and mempool.
HiveAgent — The Agentzon
498 MCP tools across 12 industry verticals. Marketplace, escrow, DeFi, legal, healthcare, insurance, construction, and trades. USDC payments on Base L2.
Indexed from Smithery · Updates nightlyView on Smithery →