Registry / llm-agents / snowflake-labs-mcp

snowflake-labs-mcp

JSON →
library1.4.2pypypiunverified

MCP (Model Context Protocol) server for Snowflake, enabling LLMs to interact with Snowflake databases. Current version 1.4.1, requires Python >=3.11. Active development.

pip install snowflake-labs-mcp
INSTALL
IMPORT
SIG · SNOWFLAKE-LABS-MCP
S
snowflake-labs-mcp
llm-agentspythonv1.4.2
Install
17.9s avg
Import
Disk
213MB
Pass rate
3/ 10
Env Coverage3 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v1.4.2 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
glibc
py 3.10
✕ build_error
✕ build_error
py 3.11
✕ build_error
✓ 21s
py 3.12
✕ build_error
✓ 16.9s
py 3.13
✕ build_error
✓ 15.7s
py 3.9
✕ build_error
✕ build_error
213MB installed
● package 213MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

SnowflakeMCPServer
from snowflake_labs_mcp import SnowflakeMCPServer
from snowflake_mcp import SnowflakeMCPServer
Wrong package name - correct import uses underscores matching the library slug.

Basic server setup. Set environment variables for authentication.

import os from snowflake_labs_mcp import SnowflakeMCPServer os.environ['SNOWFLAKE_ACCOUNT'] = 'my_account' os.environ['SNOWFLAKE_USER'] = 'my_user' os.environ['SNOWFLAKE_PASSWORD'] = 'my_password' os.environ['SNOWFLAKE_WAREHOUSE'] = 'my_wh' server = SnowflakeMCPServer() server.run()
Debug
Known issues
breakingVersion 1.0.0 changed the server class name from SnowflakeMCPServer to SnowflakeMCPServer (no change) but the package's top-level import path changed. Ensure you use 'from snowflake_labs_mcp import SnowflakeMCPServer'.
fix
Update import to 'from snowflake_labs_mcp import SnowflakeMCPServer'.
affects: >=1.0.0
gotchaAuthentication via environment variables is required; snowflake-labs-mcp does not support Snowflake's config file or browser-based SSO directly.
fix
Set SNOWFLAKE_ACCOUNT, SNOWFLAKE_USER, SNOWFLAKE_PASSWORD, SNOWFLAKE_WAREHOUSE (or use SNOWFLAKE_PRIVATE_KEY for key pair auth).
affects: all
gotchaThe server runs indefinitely. Expect it to block the main thread; no built-in graceful shutdown handler.
fix
Wrap in asyncio or run in a separate thread if needed.
affects: all
Upgrade
Version history
1.4.2latest on PyPI · released May 15, 2026
Audit
Dependencies

No dependency data recorded yet.

Agent activity
18 hits · last 30 days
node
16
Meta
1
OpenAI (training)
1
Resources
snowflake-labs-mcp — pip install snowflake-labs-mcp · libregistry