EveryDev.ai
Subscribe
Home
Tools

3,355+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Supabase MCP Server
    Supabase MCP Server icon

    Supabase MCP Server

    MCP Servers

    An open-source MCP server that connects AI assistants like Cursor, Claude, and Windsurf directly to Supabase projects for database management, querying, and more.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free to use, modify, and distribute under the Apache 2.0 license.

    Engagement

    Available On

    Web
    API
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    MCP ServersDatabase ToolsAI Coding Assistants

    Alternatives

    CoplayNeon MCP ServerMDN MCP Server
    Developer
    SupabaseSan Francisco, CAEst. 2020$1.04B raised

    Listed Aug 2026

    About Supabase MCP Server

    The Supabase MCP Server implements the Model Context Protocol (MCP) standard to bridge AI coding assistants with Supabase's backend platform. It is published under the Apache 2.0 license and maintained by Supabase in the open, with the repository hosted at github.com/supabase/mcp. As of July 2026, the project has over 2,800 GitHub stars and is actively maintained with regular releases.

    What It Is

    The Supabase MCP Server is a protocol adapter that lets Large Language Models (LLMs) interact with Supabase projects on a developer's behalf. Using the Model Context Protocol — a standard for connecting LLMs to external services — the server exposes a structured set of tools covering database operations, Edge Functions, authentication, storage, branching, and account management. Developers configure their AI client (Cursor, Claude, Windsurf, or any MCP-compatible tool) to point at the hosted server endpoint at https://mcp.supabase.com/mcp, then authenticate via OAuth. Once connected, the AI assistant can list tables, run SQL queries, apply migrations, deploy Edge Functions, and more — all through natural language prompts.

    Available Tool Groups

    The server organizes its capabilities into feature groups, all enabled by default except Storage:

    • Database: list_tables, list_extensions, list_migrations, apply_migration, execute_sql
    • Debugging: get_logs (API, Postgres, Edge Functions, Auth, Storage, Realtime), get_advisors
    • Development: get_project_url, get_publishable_keys, generate_typescript_types
    • Edge Functions: list_edge_functions, get_edge_function, deploy_edge_function
    • Account management: project and organization CRUD, cost information (disabled in project-scoped mode)
    • Docs: search_docs for Supabase documentation search
    • Branching (experimental): branch create/list/delete/merge/reset/rebase (requires a paid Supabase plan)
    • Storage (disabled by default): bucket listing and storage configuration

    Deployment and Configuration

    The server runs as a hosted remote endpoint, so no local installation is required for most users. Configuration is handled via URL query parameters:

    • read_only=true — executes all queries as a read-only Postgres user
    • project_ref=<id> — scopes the server to a single project and disables account-level tools
    • features=<groups> — enables only specific tool groups (comma-separated)

    For local development, the Supabase CLI exposes the MCP server at http://localhost:54321/mcp. Self-hosted Supabase deployments can also enable the MCP server, though both local and self-hosted modes offer a limited subset of tools and do not include OAuth 2.1.

    Authentication uses dynamic client registration by default, meaning no personal access token (PAT) is required for standard setups. CI environments and OAuth-requiring clients (such as Azure API Center) can use PAT-based or manual OAuth app authentication as alternatives.

    Integration with the Vercel AI SDK

    The @supabase/mcp-server-supabase npm package exports a createToolSchemas() function for use with Vercel AI SDK's MCP client. This enables static tool schemas with client-side validation and inferred TypeScript types for tool inputs and outputs. Filtering options mirror the server's URL parameters: features, projectScoped, and readOnly. This makes it straightforward to embed Supabase MCP tools into AI-powered applications built on the AI SDK.

    Security Model and Recommendations

    The documentation explicitly warns that connecting any data source to an LLM carries inherent risks, particularly prompt injection — where malicious content in user-generated data could trick an LLM into executing unintended queries. Supabase MCP wraps SQL results with additional instructions to discourage LLMs from following injected commands, but the documentation notes this is not foolproof. The project's published recommendations include: never connecting to production data, using read-only mode when real data is necessary, scoping the server to a specific project, enabling manual tool-call approval in the MCP client, and using Supabase's branching feature to isolate development environments.

    Update: v0.9.0

    The latest release is mcp-server-supabase-v0.9.0, published on July 17, 2026. The repository was last pushed to on July 31, 2026, indicating active development. A notable recent change is that the hosted server no longer requires a personal access token (PAT) for authentication — dynamic client registration via OAuth is now the default flow, simplifying setup for most MCP clients.

    Supabase MCP Server - 1

    Community Discussions

    Be the first to start a conversation about Supabase MCP Server

    Share your experience with Supabase MCP Server, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free to use, modify, and distribute under the Apache 2.0 license.

    • Full source code access
    • Remote hosted MCP endpoint
    • All tool groups
    • OAuth 2.1 authentication
    • Local CLI support

    Capabilities

    Key Features

    • Remote hosted MCP endpoint (no local install required)
    • Database tools: list tables, execute SQL, apply migrations
    • Edge Functions management: list, get, deploy
    • Debugging tools: service logs and security/performance advisors
    • TypeScript type generation from database schema
    • Account management: projects, organizations, cost info
    • Supabase documentation search
    • Branching support (experimental)
    • Storage bucket management (optional)
    • Read-only mode for safe data access
    • Project-scoped mode to limit access to a single project
    • Feature group filtering via URL parameters
    • OAuth 2.1 dynamic client registration (no PAT required)
    • PAT-based authentication for CI environments
    • Manual OAuth app support for clients like Azure API Center
    • createToolSchemas() for Vercel AI SDK integration
    • Local development support via Supabase CLI
    • Self-hosted Supabase support
    • Prompt injection mitigations in SQL result wrapping

    Integrations

    Cursor
    Claude
    Claude Code
    Windsurf
    Vercel AI SDK
    Supabase CLI
    Azure API Center
    Supabase Dashboard
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Supabase MCP Server and help others make informed decisions.

    Developer

    Supabase

    Supabase is an open-source Firebase alternative founded in 2020 by Paul Copplestone and Ant Wilson. It provides a comprehensive backend-as-a-service platform that combines a PostgreSQL database, authentication systems, instant APIs, edge functions, real-time subscriptions, and storage solutions. The company is dedicated to open-source development and empowering developers with powerful database tools that are accessible and developer-friendly. Supabase has raised significant funding to expand its platform, including a $80 million Series B round in 2023, and has grown a vibrant community of developers worldwide.

    Founded 2020
    San Francisco, CA
    $1.04B raised
    388 employees

    Used by

    1Password
    PwC
    Johnson & Johnson
    Udio
    +3 more
    Read more about Supabase
    WebsiteGitHubX / Twitter
    3 tools in directory

    Similar Tools

    Coplay icon

    Coplay

    AI assistant and MCP server for Unity that lets developers control the Unity Editor using natural language to manage assets, scenes, scripts, and game dev workflows.

    Neon MCP Server icon

    Neon MCP Server

    An open-source MCP server that lets AI assistants interact with Neon Postgres databases using natural language to manage projects, run queries, and perform schema migrations.

    MDN MCP Server icon

    MDN MCP Server

    An experimental MCP server by Mozilla that gives LLMs and coding agents reliable, up-to-date access to MDN's web platform documentation, search, and browser compatibility data.

    Browse all tools

    Related Topics

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    164 tools

    Database Tools

    AI-powered tools for database management, optimization, query construction, and schema design that enhance developer productivity and database performance.

    53 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    689 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions