# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
build:
dockerBuildPath: ./
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- supabaseUrl
- supabaseKey
- supabaseAccessToken
properties:
supabaseUrl:
type: string
description: The URL of the Supabase project.
supabaseKey:
type: string
description: The service role key for the Supabase project.
supabaseAccessToken:
type: string
description: The access token for Supabase management operations.
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
(config) => ({ command: 'node', args: ['build/index.js'], env: { SUPABASE_URL: config.supabaseUrl, SUPABASE_KEY: config.supabaseKey, SUPABASE_ACCESS_TOKEN: config.supabaseAccessToken } })