MCP Snowflake Server Readonly MCP Server

Slightly altered from https://github.com/isaacwasserman/mcp-snowflake-server

Local serverstdioPython

What is the MCP Snowflake Server Readonly MCP server?

Slightly altered from https://github.com/isaacwasserman/mcp-snowflake-server. The mcp snowflake server readonly mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 2 defined tools rather than through you.

What it actually does

A Model Context Protocol (MCP) server implementation that provides database interaction with Snowflake. This server enables running SQL queries via tools and exposes data insights and schema context as resources. Does not include the ability to execute write operations, and includes a system prompt.

Its toolset

Everything the assistant can do here goes through one of these:

  • Resources — The Resources tool exposed by this server
  • Tools — The Tools tool exposed by this server

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

When to reach for it

Plenty of database access servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Snowflake Server Readonly's toolset — Resources, Tools — is a fair guide to whether it matches your workflow. It is maintained by sgriffin-magnoliacap; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp snowflake server readonly mcp server does with a few real requests.

Available tools

ToolWhat it does
ResourcesThe Resources tool exposed by this server.
ToolsThe Tools tool exposed by this server.

How to install the MCP Snowflake Server Readonly MCP server

"mcpServers": {
  "snowflake_pip": {
    "command": "uvx",
    "args": [
      "--python=3.12",  // Optional: specify Python version <=3.12
      "mcp_snowflake_server",
      "--account", "your_account",
      "--warehouse", "your_warehouse",
      "--user", "your_user",
      "--password", "your_password",
      "--role", "your_role",
      "--database", "your_database",
      "--schema", "your_schema"
      // Optionally: "--log_dir", "/absolute/path/to/logs"
      // Optionally: "--log_level", "DEBUG"/"INFO"/"WARNING"/"ERROR"/"CRITICAL"
      // Optionally: "--exclude_tools", "{tool_name}", ["{other_tool_name}"]
    ]
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use MCP Snowflake Server Readonly to Resources.
  • Use MCP Snowflake Server Readonly to Tools.

Frequently asked questions

It connects MCP Snowflake Server Readonly to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (Resources, Tools) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Snowflake Server Readonly directly.