Supabase MCP Server
Databasestdiov0.3.0
Official Supabase MCP server for database and backend integration. Enables AI agents to query PostgreSQL databases, manage tables and schemas, handle authentication users, interact with storage buckets, and invoke edge functions. Provides full access to Supabase project management including migrations and type generation.
Bağlan
Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@supabase/mcp-server"
],
"env": {
"SUPABASE_URL": "<YOUR_SUPABASE_URL>",
"SUPABASE_SERVICE_ROLE_KEY": "<YOUR_SUPABASE_SERVICE_ROLE_KEY>"
}
}
}
}Araçlar (4)
execute_sql
Execute a SQL query against the Supabase PostgreSQL database.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "SQL query to execute"
},
"params": {
"type": "array",
"description": "Query parameters for parameterized queries"
}
}
}list_tables
List all tables in the database with their schemas and row counts.
{
"type": "object",
"properties": {
"schema": {
"type": "string",
"description": "Schema name (default public)"
}
}
}get_table_schema
Get the column definitions and constraints for a specific table.
{
"type": "object",
"required": [
"table"
],
"properties": {
"table": {
"type": "string",
"description": "Table name"
},
"schema": {
"type": "string",
"description": "Schema name (default public)"
}
}
}manage_storage
Upload, download, or list files in Supabase Storage buckets.
{
"type": "object",
"required": [
"action",
"bucket"
],
"properties": {
"path": {
"type": "string",
"description": "File path within the bucket"
},
"action": {
"type": "string",
"description": "Action to perform (list, upload, download, delete)"
},
"bucket": {
"type": "string",
"description": "Storage bucket name"
}
}
}Kaynaklar
Bu sunucu herhangi bir kaynak sunmuyor.
Prompt'lar
Bu sunucu herhangi bir prompt sunmuyor.
Sunucu bilgileri
- Yazar
- Supabase (@supabase)
- Lisans
- Apache-2.0
- Sürüm
- 0.3.0
- Yıldızlar
- 2,706
- Son güncelleme
- 25 Mayıs 2026