Описание
PolarDB Supabase — Model Context Protocol server
README
Connect your PolarDB Supabase instances to Cursor, Claude, Windsurf, and other AI assistants.
The Model Context Protocol (MCP) standardizes how Large Language Models (LLMs) talk to external services like Supabase. This server connects AI assistants directly with your PolarDB Supabase project and allows them to perform tasks like managing tables, fetching config, and querying data.
Prerequisites
You will need Node.js installed on your machine. You can check this by running:
node -v
If you don't have Node.js installed, you can download it from nodejs.org.
Setup
1. Get your PolarDB credentials
You'll need the following from your PolarDB instance:
- API URL: Your PolarDB instance endpoint (e.g.,
http://your-host:port) - Service Role Key: For database operations and as fallback authentication for Edge Functions/secrets
- Dashboard Username/Password (Optional): For Edge Functions, secrets management, and type generation (if not provided, Service Role Key will be used)
2. Configure your MCP client
Configure your MCP client (such as Cursor) to use this server. Most MCP clients store the configuration as JSON.
Option 1: Using npx (Recommended - No local build required)
{
"mcpServers": {
"polardb-supabase": {
"command": "npx",
"args": [
"-y",
"polardb-supabase-mcp",
"--api-url",
"http://your-polardb-supabase-host:port",
"--service-role-key",
"your-service-role-key",
"--anon-key",
"your-anon-key",
"--dashboard-username",
"your-dashboard-username",
"--dashboard-password",
"your-dashboard-password",
"--project-ref",
"default"
]
}
}
}
Option 2: Using local build
{
"mcpServers": {
"polardb-supabase": {
"command": "node",
"args": [
"/path/to/supabase-mcp/packages/mcp-server-supabase/dist/transports/stdio.js",
"--api-url",
"http://your-polardb-supabase-host:port",
"--service-role-key",
"your-service-role-key",
"--anon-key",
"your-anon-key",
"--dashboard-username",
"your-dashboard-username",
"--dashboard-password",
"your-dashboard-password",
"--project-ref",
"default"
]
}
}
}
Replace the placeholder values with your actual PolarDB credentials.
Security
Before running the MCP server, we recommend you read our security best practices to understand the risks of connecting an LLM to your PolarDB projects and how to mitigate them.
Read-only mode
To restrict the server to read-only queries, set the --read-only flag:
node /path/to/supabase-mcp/packages/mcp-server-supabase/dist/transports/stdio.js --read-only
We recommend you enable this by default. This prevents write operations on your databases, including creating or deleting Edge Function secrets.
Tools
The following tools are available to the LLM:
Database
list_tables: Lists all tables within the specified schemasexecute_sql: Executes raw SQL in the database
Development
get_project_url: Gets the API URL for a projectget_anon_key: Gets the anonymous API key for a project
Edge Functions
list_edge_functions: Lists all Edge Functions in a projectget_edge_function: Gets details for a specific Edge Functiondeploy_edge_function: Deploys a new Edge Function to a project
Edge Functions Secrets
list_ef_secrets: Lists all Edge Function secrets (encrypted values).create_ef_secrets: Creates or updates Edge Function secrets (batch supported; values are encrypted).delete_ef_secrets: Deletes Edge Function secrets (batch deletion supported).
Note: Secrets management supports two authentication methods: Dashboard authentication (username/password) is preferred, but Service Role Key can also be used. Secrets are automatically encrypted when stored.
AI Prompts
get_best_practices: List all available Supabase AI prompts and development guidance
Resources
- Model Context Protocol: Learn more about MCP
- PolarDB Supabase Documentation: Learn more about PolarDB features
License
This project is licensed under Apache 2.0. See the LICENSE file for details.
Установка PolarDB Supabase
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/ApsaraDB/PolarDB-Supabase-MCP-ServerFAQ
PolarDB Supabase MCP бесплатный?
Да, PolarDB Supabase MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для PolarDB Supabase?
Нет, PolarDB Supabase работает без API-ключей и переменных окружения.
PolarDB Supabase — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить PolarDB Supabase в Claude Desktop, Claude Code или Cursor?
Открой PolarDB Supabase на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare PolarDB Supabase with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
