Back to MCP directory
publicPublicdnsLocal runtime

supabase-mcp-server-ye4

Supabase MCP服务器提供对Supabase管理API的程序化访问,支持项目和组织的标准化管理。

article

README

🚀 Supabase MCP 服务器

Supabase MCP 服务器是一个基于 Model Context Protocol (MCP) 的服务器,它提供了程序化访问 Supabase 管理 API 的能力。借助这个服务器,AI 模型和其他客户端能够通过标准化接口,轻松管理 Supabase 项目和组织。

🚀 快速开始

安装说明

在您的 Claude Config JSON 文件中添加以下内容:

{
  "mcpServers": {
    "supabase": {
      "command": "npx",
      "args": [
        "y",
        "@joshuarileydev/supabase-mcp-server"
      ],
      "env": {
        "SUPABASE_API_KEY": "API_KEY_HERE"
      }
    }
  }
}

✨ 主要特性

项目管理

  • 列出所有项目
  • 获取项目详情
  • 创建新项目
  • 删除项目
  • 检索项目 API 密钥

组织管理

  • 列出所有组织
  • 获取组织详情
  • 创建新组织
READY-TO-PASTE CONFIG

MCP client config generator

Choose your client, fill the required environment variables, then copy a config generated from this server's published metadata

terminal
data_object

This entry does not contain a standard command or remote URL, so a safe client config cannot be generated automatically

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client