# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- snowflakeUser
- snowflakePassword
- snowflakeAccount
- snowflakeDatabase
- snowflakeWarehouse
properties:
snowflakeUser:
type: string
description: Snowflake username
snowflakePassword:
type: string
description: Snowflake password
snowflakeAccount:
type: string
description: Snowflake account identifier
snowflakeDatabase:
type: string
description: Snowflake database name
snowflakeWarehouse:
type: string
description: Snowflake warehouse name
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({
command: 'python',
args: ['server.py'],
env: {
SNOWFLAKE_USER: config.snowflakeUser,
SNOWFLAKE_PASSWORD: config.snowflakePassword,
SNOWFLAKE_ACCOUNT: config.snowflakeAccount,
SNOWFLAKE_DATABASE: config.snowflakeDatabase,
SNOWFLAKE_WAREHOUSE: config.snowflakeWarehouse
}
})
exampleConfig:
snowflakeUser: example_user
snowflakePassword: example_password
snowflakeAccount: EXAMPLE12345.US-WEST-2
snowflakeDatabase: EXAMPLE_DB
snowflakeWarehouse: EXAMPLE_WH