From 5b0525898ce09d5363bcae46d7e08ec0153d94d7 Mon Sep 17 00:00:00 2001 From: Brett Beutell Date: Thu, 30 Oct 2025 12:21:28 +0100 Subject: [PATCH 1/2] Update supabase template starter readme --- templates/starter-mcp-supabase/README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/templates/starter-mcp-supabase/README.md b/templates/starter-mcp-supabase/README.md index 8ea0326..e16c4a4 100644 --- a/templates/starter-mcp-supabase/README.md +++ b/templates/starter-mcp-supabase/README.md @@ -9,14 +9,11 @@ Minimal MCP server built with mcp-lite and deployed as a Supabase Edge Function ## Getting Started -1. **Initialize Supabase project** (if not already done): -```bash -supabase init -``` - -2. **Start local development**: +1. **Start local development**: ```bash +# Start Supabase services supabase start +# Serve your MCP function locally supabase functions serve --no-verify-jwt mcp-server ``` @@ -24,7 +21,7 @@ The MCP server will be available at: - Main endpoint: `http://localhost:54321/functions/v1/mcp-server/mcp` - Health check: `http://localhost:54321/functions/v1/mcp-server/health` -3. **Deploy to Supabase**: +2. **Deploy to Supabase**: ```bash supabase functions deploy --no-verify-jwt mcp-server ``` From 5cdaccdae5fe7cb2642a87f8edb0da8920f9dd5b Mon Sep 17 00:00:00 2001 From: Brett Beutell Date: Fri, 31 Oct 2025 11:14:48 +0100 Subject: [PATCH 2/2] Update supabase template deps --- templates/starter-mcp-supabase/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/starter-mcp-supabase/package.json b/templates/starter-mcp-supabase/package.json index 1966cb6..8c96455 100644 --- a/templates/starter-mcp-supabase/package.json +++ b/templates/starter-mcp-supabase/package.json @@ -7,9 +7,9 @@ }, "dependencies": { "hono": "^4.9.12", - "mcp-lite": "^0.8.1" + "mcp-lite": "^0.9.0" }, "devDependencies": { - "supabase": "^2.53.6" + "supabase": "^2.54.11" } }