Supabase · Capability

Supabase Auth API — Configuration

Supabase Auth API — Configuration. 1 operations. Lead operation: Get auth settings. Self-contained Naftiko capability covering one Supabase business surface.

Run with Naftiko SupabaseConfiguration

What You Can Do

GET
Getsettings — Get auth settings
/v1/settings

MCP Tools

get-auth-settings

Get auth settings

read-only idempotent

Capability Spec

auth-configuration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Supabase Auth API — Configuration
  description: 'Supabase Auth API — Configuration. 1 operations. Lead operation: Get auth settings. Self-contained Naftiko
    capability covering one Supabase business surface.'
  tags:
  - Supabase
  - Configuration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SUPABASE_API_KEY: SUPABASE_API_KEY
capability:
  consumes:
  - type: http
    namespace: auth-configuration
    baseUri: https://{project_ref}.supabase.co/auth/v1
    description: Supabase Auth API — Configuration business capability. Self-contained, no shared references.
    resources:
    - name: settings
      path: /settings
      operations:
      - name: getsettings
        method: GET
        description: Get auth settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SUPABASE_API_KEY}}'
  exposes:
  - type: rest
    namespace: auth-configuration-rest
    port: 8080
    description: REST adapter for Supabase Auth API — Configuration. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/settings
      name: settings
      description: REST surface for settings.
      operations:
      - method: GET
        name: getsettings
        description: Get auth settings
        call: auth-configuration.getsettings
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: auth-configuration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Supabase Auth API — Configuration. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-auth-settings
      description: Get auth settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: auth-configuration.getsettings
      outputParameters:
      - type: object
        mapping: $.