Supabase Auth

get_logs

Gets logs for a Supabase project by service type. Use this to help debug problems with your app. This will return logs within the last 24 hours.

Remote Supabase

Other tools also called get_logs? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "service": {
      "enum": [
        "api",
        "branch-action",
        "postgres",
        "edge-function",
        "auth",
        "storage",
        "realtime"
      ],
      "type": "string",
      "description": "The service to fetch logs for"
    },
    "project_id": {
      "type": "string"
    }
  }
}