Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
MCP_READ_ONLY | No | Optional: true/false to force read-only mode | |
SNOWFLAKE_USER | Yes | Snowflake username | |
SNOWFLAKE_SCHEMA | No | Optional: default schema name | |
SNOWFLAKE_ACCOUNT | Yes | Snowflake account identifier | |
SNOWFLAKE_DATABASE | No | Optional: default database name | |
SNOWFLAKE_PASSWORD | Yes | Snowflake password | |
SNOWFLAKE_WAREHOUSE | No | Optional: Snowflake warehouse name |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
summarize-notes | Creates a summary of all notes |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
execute-snowflake-sql | Execute a SQL query on Snowflake and return the result. |
list-snowflake-warehouses | List available Data Warehouses (DWH) on Snowflake. |
list-databases | List all accessible Snowflake databases. |
list-views | List all views in a database and schema. |
describe-view | Get details of a view (columns, SQL). |
query-view | Query a view with an optional row limit (markdown result). |
execute-query | Execute a SQL query in read-only mode (SELECT, SHOW, DESCRIBE, EXPLAIN, WITH) or not (if 'read_only' is false), result in markdown format. |