execute-snowflake-sql
Run SQL queries on Snowflake and retrieve results directly through the Simple Snowflake MCP Server, designed to operate behind corporate proxies.
Instructions
Execute a SQL query on Snowflake and return the result.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sql | Yes | SQL query to execute |
Input Schema (JSON Schema)
{
"properties": {
"sql": {
"description": "SQL query to execute",
"type": "string"
}
},
"required": [
"sql"
],
"type": "object"
}