Using Supabase MCP Server in ChatGPT

I am trying to connect ChatGPT to Supabase MCP server Doing it with codex was easy because all I had to do was adding this code in Codex config file:
[mcp_servers.supabase]
command = "npx"
args = [
"-y",
"@supabase/mcp-server-supabase@latest",
"--read-only", # safe default
"--project-ref",
"aaabbbccc",
]
env = { SUPABASE_ACCESS_TOKEN = "XXXXX" }
[mcp_servers.supabase]
command = "npx"
args = [
"-y",
"@supabase/mcp-server-supabase@latest",
"--read-only", # safe default
"--project-ref",
"aaabbbccc",
]
env = { SUPABASE_ACCESS_TOKEN = "XXXXX" }
But for ChatGPT, seems like this wont work. I am unsure that I should put in the "MCP Server URL".
No description
3 Replies
garyaustin
garyaustin2mo ago
Seems like others are finding the same issue: https://github.com/orgs/supabase/discussions/36750 It may not exist.
GitHub
How do I find the correct MCP server URL for Supabase (for use in O...
Hi Supabase team, I’m trying to connect to my Supabase project using the MCP server (Model Context Protocol) as required by some tools (e.g., OpenAI playgrounds, Cursor, etc.). I already generated ...
tomaspozo
tomaspozo2mo ago
Hey! remote mcp is an upcoming feature... just posted on the github discussion too
Dbugger
DbuggerOP2mo ago
Thanks, I really hope it becomes a thing soon. I am using Sentry as MCP and it is a KILLER function

Did you find this page helpful?