PostgreSQL-based backend-as-a-service
Run the underlying MCP server directly — without Agent-CoreX routing.
npx -y @modelcontextprotocol/server-supabaseNote: Requires Supabase project
SUPABASE_URLRequiredSUPABASE_KEYRequiredAgent-CoreX intelligently routes which tools from Supabase your AI agent actually needs per request — reducing token usage and cost.
agent-corex.json
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-supabase"
],
"env": {
"SUPABASE_URL": "<your-supabase_url>",
"SUPABASE_KEY": "<your-supabase_key>"
}
}
}
}Connect in 2 minutes. Only pay for the tools your agent actually uses.
Recommended: intelligent tool routing, lower costs
uvx agent-corex mcp add supabaseAgent-CoreX selects only the tools your agent needs, cutting token usage by up to 60%.
Use Supabase directly without routing
npx -y @modelcontextprotocol/server-supabaseNew to Agent-CoreX? View setup guide →