Snowflake Proxy
DB-API 2.0 compliant connection to Komodo-managed Snowflake warehouses. Works seamlessly with pandas, SQLAlchemy, and standard Python database patterns.
The Komodo Connector SDK is a Python library and CLI that provides programmatic access to the Komodo Health platform. It handles authentication, account management, and query execution against your Komodo data stored in Snowflake.
Snowflake Proxy
DB-API 2.0 compliant connection to Komodo-managed Snowflake warehouses. Works seamlessly with pandas, SQLAlchemy, and standard Python database patterns.
OAuth 2.0 Auth
Browser-based login and machine-to-machine service principal credentials with automatic JWT refresh.
Sync & Async Queries
Run blocking queries for immediate results or submit long-running queries asynchronously and poll for completion.
MCP Server
Connect AI assistants (Cursor, VS Code, Claude Desktop) to explore your Snowflake schemas and build apps via the Model Context Protocol.
pip install komodo # Install the SDKkomodo login # Authenticate via browserkomodo account set # Select your accountThen in Python:
from komodo import get_snowflake_connection
conn = get_snowflake_connection()cursor = conn.cursor()cursor.execute("SELECT * FROM my_table LIMIT 10")print(cursor.fetchall())See the Quickstart guide for a complete walkthrough, the MCP server to explore your data through an AI assistant, or Troubleshooting if something fails.