Config is the same across clients β only the file and path differ.
{
"mcpServers": {
"supabase": {
"env": {
"ALIYUN_ACCESS_TOKEN": "<YOUR_AK>|<YOUR_SK>"
},
"args": [
"-y",
"@aliyun-supabase/mcp-server-supabase@latest",
"--features=aliyun"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
π Supabase on Alibaba Cloud is FREE! Deploy Supabase for free on Alibaba Cloud today.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories β click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience β it helps other developers decide.
Sign in to write a review.
Others in cloud / data
Manage Supabase projects β databases, auth, storage, and edge functions
MCP Server for GCP environment for interacting with various Observability APIs.
π₯ Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for Alibabacloud Supabase Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
π Supabase on Alibaba Cloud is FREE! Deploy Supabase for free on Alibaba Cloud today.
Free for Developers: Learn more about our product Supabase on Alibaba Cloud (AnalyticDB for PostgreSQL) - available at no cost.
Learn more about Alibaba Cloud Supabase MCP.
Connect your Supabase projects to Cursor, Claude, Windsurf, Lingma, Qoder, and other AI assistants.
The Model Context Protocol (MCP) standardizes how Large Language Models (LLMs) talk to external services like Supabase. It connects AI assistants directly with your Supabase project and allows them to perform tasks like managing tables, fetching config, and querying data. See the full list of tools.
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.
First, go to your Aliyun console and create a personal access key. Give it a name that describes its purpose, like "Cursor MCP Server".
This will be used to authenticate the MCP server with your Supabase account. Make sure to copy the token, as you won't be able to see it again.
Next, configure your MCP client (such as Cursor) to use this server. Most MCP clients store the configuration as JSON in the following format:
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@aliyun-supabase/mcp-server-supabase@latest",
"--features=aliyun",
],
"env": {
"ALIYUN_ACCESS_TOKEN": "<YOUR_AK>|<YOUR_SK>"
}
}
}
}
Replace <ALIYUN_ACCESS_TOKEN> with the token you created in step 1.
Alternatively, you can use the separate environment variables:
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@aliyun-supabase/mcp-server-supabase@latest",
"--features=aliyun",
],
"env": {
"ALIBABA_CLOUD_ACCESS_KEY_ID": "<YOUR_AK>",
"ALIBABA_CLOUD_ACCESS_KEY_SECRET": "<YOUR_SK>"
}
}
}
}
To scope the MCP server to a specific Aliyun project and avoid traversing all regions and projects, you can use the --project-id and --region-id flags:
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@aliyun-supabase/mcp-server-supabase@latest",
"--features=aliyun",
"--project-id=your-project-id",
"--region-id=cn-hangzhou"
],
"env": {
"ALIBABA_CLOUD_ACCESS_KEY_ID": "<YOUR_AK>",
"ALIBABA_CLOUD_ACCESS_KEY_SECRET": "<YOUR_SK>"
}
}
}
}
When --project-id is specified:
project_id parameter will be automatically injected and removed from tool parametersWhen --region-id is specified:
region_id parameter will be automatically injected and removed from tool parametersNote: Both
--project-idand--region-idare optional. If not specified, tools will work as before, requiring you to provide these parameters when calling tools.
For enhanced security, especially