Supabase Auth
get_advisors
Gets a list of advisory notices for the Supabase project. Use this to check for security vulnerabilities or performance improvements. Include the remediation URL as a clickable link so that the user can reference the issue themselves. It's recommended to run this tool regularly, especially after making DDL changes to the database since it will catch things like missing RLS policies.
Remote Supabase
Other tools also called get_advisors?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"type": {
"enum": [
"security",
"performance"
],
"type": "string",
"description": "The type of advisors to fetch"
},
"project_id": {
"type": "string"
}
}
}