Skip to main content
Glama

MCP Snowflake Service

MIT License
28
  • Apple
  • Linux
# 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

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/datawiz168/mcp-snowflake-service'

If you have feedback or need assistance with the MCP directory API, please join our Discord server