query-view
Query and retrieve data from a specified view in Snowflake with an optional row limit, returning results in markdown format. Works efficiently behind corporate proxies using the Simple Snowflake MCP server.
Instructions
Query a view with an optional row limit (markdown result).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | ||
limit | No | ||
schema | Yes | ||
view | Yes |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"type": "string"
},
"limit": {
"type": "integer"
},
"schema": {
"type": "string"
},
"view": {
"type": "string"
}
},
"required": [
"database",
"schema",
"view"
],
"type": "object"
}