diff --git a/README.md b/README.md index cb28cad..88af6e1 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,7 @@ Enabled by default. Use `debugging` to target this group of tools with the [`fea Enabled by default. Use `development` to target this group of tools with the [`features`](#feature-groups) option. - `get_project_url`: Gets the API URL for a project. -- `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. +- `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. - `generate_typescript_types`: Generates TypeScript types based on the database schema. LLMs can save this to a file and use it in their code. #### Edge Functions diff --git a/docs/production.md b/docs/production.md index 37f4524..030d1d7 100644 --- a/docs/production.md +++ b/docs/production.md @@ -20,7 +20,7 @@ When creating a migration that inserts static data, it is important to ask the L 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. -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. +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. ### Revert a migration diff --git a/packages/mcp-server-supabase/package.json b/packages/mcp-server-supabase/package.json index bf7455e..0c67995 100644 --- a/packages/mcp-server-supabase/package.json +++ b/packages/mcp-server-supabase/package.json @@ -1,7 +1,7 @@ { "name": "@supabase/mcp-server-supabase", "mcpName": "com.supabase/mcp", - "version": "0.5.8", + "version": "0.5.9", "description": "MCP server for interacting with Supabase", "license": "Apache-2.0", "type": "module", diff --git a/packages/mcp-server-supabase/server.json b/packages/mcp-server-supabase/server.json index 8876373..9547bf2 100644 --- a/packages/mcp-server-supabase/server.json +++ b/packages/mcp-server-supabase/server.json @@ -8,7 +8,7 @@ "subfolder": "packages/mcp-server-supabase" }, "websiteUrl": "https://supabase.com/mcp", - "version": "0.5.8", + "version": "0.5.9", "remotes": [ { "type": "streamable-http", @@ -20,7 +20,7 @@ "registryType": "npm", "registryBaseUrl": "https://registry.npmjs.org", "identifier": "@supabase/mcp-server-supabase", - "version": "0.5.8", + "version": "0.5.9", "transport": { "type": "stdio" }, diff --git a/packages/mcp-utils/package.json b/packages/mcp-utils/package.json index 8613e41..410af1a 100644 --- a/packages/mcp-utils/package.json +++ b/packages/mcp-utils/package.json @@ -1,6 +1,6 @@ { "name": "@supabase/mcp-utils", - "version": "0.2.3", + "version": "0.2.4", "description": "MCP utilities", "license": "Apache-2.0", "type": "module",