Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions templates/starter-mcp-supabase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,19 @@ 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
```

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
```
Expand Down
4 changes: 2 additions & 2 deletions templates/starter-mcp-supabase/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Loading