ClaudeMap

Supabase MCP Server

Official Supabase MCP server for Postgres, Auth, and Storage.

MCP Serversofficialsupabasedatabase

Official Supabase MCP server for Postgres queries, Auth user management, Edge Function deployment, and Storage operations. Lets Claude interact with a Supabase project end-to-end without bespoke scripts.

What it does

  • Postgres tools: execute_sql with read-only / write / admin scopes, list_tables, extensions inspection
  • Auth tools: list_users, get_user, create_user, update_user, delete_user (admin key required)
  • Edge Function tools: deploy_function, list_functions, get_logs
  • Storage tools: list_buckets, upload_object, download_object, copy_object, move_object
  • Project-level access control via the Supabase personal access token (PAT)

When to use it

Best for end-to-end Supabase workflows — schema migrations under Claude's review, seeding test data, debugging RLS policies with read-only SQL, deploying edge functions from local code, and ad-hoc analytics on the project's own Postgres. Pairs with any agent framework that speaks MCP.

Getting started

npx -y @supabase/mcp-server-supabase@latest --project-ref=<your-project-ref>

Authenticate via the supabase login flow on first run; a personal access token is stored in the OS keychain. Add the entry to .mcp.json or ~/.claude.json.

Things to know

execute_sql with write or admin scope can drop tables — restrict the PAT to the minimum needed and use a separate project for development. The Edge Function deploy tool requires the function code to be present locally; it does not synthesize code from a prompt.

Repository

supabase/mcp

Charted

Related on the map

  • Exa MCP

    MCP Server

    Exa's official MCP server — live web search, crawling, and deep research wired into Claude.

    • official
    • search
    • web
    • mcp
  • Official Chrome DevTools MCP server — performance tracing, network inspection, and live debugging for coding agents.

    • official
    • chrome
    • debugging
    • browser
  • Vercel's handler for spinning up MCP servers on Next.js, Nuxt, Svelte, and more.

    • deploy
    • vercel
    • serverless
    • edge