It turns out,
Creating an app is super fun
and I want to record on how to connect supabase with cursor
make sure you create a folder name .cursor
and then add file name mcp.cursor
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@supabase/mcp-server-supabase@latest",
"--read-only",
"--project-ref=..."
],
"env": {
"SUPABASE_ACCESS_TOKEN": "sbp..."
}
}
}
}
and the link to access your supabase token shared is
https://supabase.com/dashboard/account/tokens
0 Comments