Snowflake MCP Sp Integration MCP Server

This project simplifies the integration of Snowflake stored procedures with an MCP (Model Context Protocol) server. It provides a framework to

Local serverstdioPython

What is the Snowflake MCP Sp Integration MCP server?

This project simplifies the integration of Snowflake stored procedures with an MCP (Model Context Protocol) server. It provides a framework to define, manage, and execute Snowflake procedures from the MCP server environment. That is what the snowflake mcp sp integration mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

Getting it running

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.

The tools it exposes

The server publishes 2 tools. What each one is for:

  • Schemas — All store procedures in the specified schemas will be available to the MCP server
  • Procedures — Only the specified procedures will be available to the MCP server

What it needs from you

Configuration is passed through the environment: SNOWFLAKE_HOST. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Python 3.8 or higher - uv installed

Things to watch

  • 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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

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. Snowflake MCP Sp Integration's toolset — Schemas, Procedures — is a fair guide to whether it matches your workflow. It is maintained by Cjaimesg; 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.

Available tools

ToolWhat it does
SchemasAll store procedures in the specified schemas will be available to the MCP server.
ProceduresOnly the specified procedures will be available to the MCP server.

How to install the Snowflake MCP Sp Integration MCP server

{
  "mcpServers": {
    "snowflake_sp_server": {
      "command": "absolute/path/to/your/uv/uv.exe",
      "args": [
        "--directory",
        "absolute/path/to/snowflake-mcp-sp-integration",
        "run",
        "main.py",
        "--schemas",
        "DB_NAME.SCHEMA_NAME",
        "--procedures",
        "DB_NAME.OTHER_SCHEMA_NAME.PROCEDURE_NAME"
      ]
    }
  }
}

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

Configuration

  • Python 3.8 or higher - uv installed
VariableDescriptionRequired
SNOWFLAKE_HOSTEndpoint or connection string the server talks to.Optional

Example prompts to try

  • Use Snowflake MCP Sp Integration to Schemas.
  • Use Snowflake MCP Sp Integration to Procedures.

Frequently asked questions

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