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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ The PostgREST MCP server allows you to connect your own users to your app via RE
## Resources

- [**Model Context Protocol**](https://modelcontextprotocol.io/introduction): Learn more about MCP and its capabilities.
- [**From development to production**](/docs/production.md): Learn how to safely promote changes to production environments.

## License

Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server-supabase/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ export function createSupabaseMcpServer(options: SupabaseMcpServerOptions) {
}),
apply_migration: tool({
description:
'Applies a migration to the database. Use this when executing DDL operations.',
'Applies a migration to the database. Use this when executing DDL operations. Do not hardcode references to generated IDs in data migrations.',
parameters: z.object({
project_id: z.string(),
name: z.string().describe('The name of the migration in snake_case'),
Expand Down