Skip to content

Commit 548c7d3

Browse files
authored
v0.5.9 (#171)
* docs: update for `get_publishable_keys` * Bump `@supabase/mcp-utils` to v0.2.4 * Bump `@supabase/mcp-server-supabase` to v0.5.9 * chore: update registry
1 parent d319653 commit 548c7d3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Enabled by default. Use `debugging` to target this group of tools with the [`fea
195195
Enabled by default. Use `development` to target this group of tools with the [`features`](#feature-groups) option.
196196

197197
- `get_project_url`: Gets the API URL for a project.
198-
- `get_anon_or_publishable_keys`: Gets the anonymous API keys for a project. Returns an array of client-safe API keys including legacy anon keys and modern publishable keys. Publishable keys are recommended for new applications.
198+
- `get_publishable_keys`: Gets the anonymous API keys for a project. Returns an array of client-safe API keys including legacy anon keys and modern publishable keys. Publishable keys are recommended for new applications.
199199
- `generate_typescript_types`: Generates TypeScript types based on the database schema. LLMs can save this to a file and use it in their code.
200200

201201
#### Edge Functions

docs/production.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ When creating a migration that inserts static data, it is important to ask the L
2020

2121
When creating a destructive migration like dropping a column, you must review the generated SQL statements and the current state of your database to confirm that the data loss is expected and acceptable.
2222

23-
After successfully applying a migration, you can test your database changes by connecting your app to the development branch. The branch project URL and API keys can be fetched using `get_project_url` and `get_anon_key` tools respectively. Save them in your `.env` file to avoid repeating this in the future.
23+
After successfully applying a migration, you can test your database changes by connecting your app to the development branch. The branch project URL and API keys can be fetched using `get_project_url` and `get_publishable_keys` tools respectively. Save them in your `.env` file to avoid repeating this in the future.
2424

2525
### Revert a migration
2626

packages/mcp-server-supabase/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@supabase/mcp-server-supabase",
33
"mcpName": "com.supabase/mcp",
4-
"version": "0.5.8",
4+
"version": "0.5.9",
55
"description": "MCP server for interacting with Supabase",
66
"license": "Apache-2.0",
77
"type": "module",

packages/mcp-server-supabase/server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"subfolder": "packages/mcp-server-supabase"
99
},
1010
"websiteUrl": "https://supabase.com/mcp",
11-
"version": "0.5.8",
11+
"version": "0.5.9",
1212
"remotes": [
1313
{
1414
"type": "streamable-http",
@@ -20,7 +20,7 @@
2020
"registryType": "npm",
2121
"registryBaseUrl": "https://registry.npmjs.org",
2222
"identifier": "@supabase/mcp-server-supabase",
23-
"version": "0.5.8",
23+
"version": "0.5.9",
2424
"transport": {
2525
"type": "stdio"
2626
},

packages/mcp-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@supabase/mcp-utils",
3-
"version": "0.2.3",
3+
"version": "0.2.4",
44
"description": "MCP utilities",
55
"license": "Apache-2.0",
66
"type": "module",

0 commit comments

Comments
 (0)