Supabase Auth

sb_create_secrets

Create or update secrets (environment variables) for a Supabase project. If a secret with the same name exists, it will be overwritten.

Remote node2flow/supabase

Other tools also called sb_create_secrets? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "_fields": {
      "type": "string",
      "description": "Comma-separated list of fields to include in the response"
    },
    "secrets": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "name",
          "value"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "value": {
            "type": "string"
          }
        }
      },
      "description": "Array of {name, value} pairs. Example: [{\"name\":\"API_KEY\",\"value\":\"sk-xxx\"}]"
    },
    "project_ref": {
      "type": "string",
      "description": "Project reference ID"
    }
  }
}