
Snowflake阅读器
STDIO安全访问Snowflake数据库的只读MCP服务器
安全访问Snowflake数据库的只读MCP服务器
A read-only MCP server for Snowflake databases. This server provides secure, read-only access to Snowflake databases through the MCP protocol.
The Snowflake connection information should be provided as a JSON string in the following format:
{ "account": "your-account", "user": "your-user", "password": "your-password", "warehouse": "your-warehouse", "database": "your-database", "schema": "your-schema", "role": "your-role" }
Add the following configuration to your MCP client settings file (Cursor AI or Claude):
{ "mcpServers": { "mcp-snowflake-reader": { "command": "docker", "args": [ "run", "-i", "--rm", "mcp-snowflake-reader", "--connection", "{\"account\":\"your-account\",\"user\":\"your-user\",\"password\":\"your-password\",\"warehouse\":\"your-warehouse\",\"database\":\"your-database\",\"schema\":\"your-schema\",\"role\":\"your-role\"}" ] } } }
{ "mcpServers": { "mcp-snowflake-reader": { "command": "uvx", "args": [ "mcp-snowflake-reader", "--connection", "{\"account\":\"your-account\",\"user\":\"your-user\",\"password\":\"your-password\",\"warehouse\":\"your-warehouse\",\"database\":\"your-database\",\"schema\":\"your-schema\",\"role\":\"your-role\"}" ] } } }
To install Snowflake Reader for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @fnf-deepHeading/mcp-snowflake-reader --client claude
This project is licensed under the MIT License - see the LICENSE file for details.
Snowflake 데이터베이스의 테이블을 읽어오는 MCP(Microservice Control Protocol) 서버입니다.
Snowflake 연결 정보는 다음과 같은 형식으로 JSON 문자열로 제공됩니다:
{ "account": "your-account", "user": "your-user", "password": "your-password", "warehouse": "your-warehouse", "database": "your-database", "schema": "your-schema", "role": "your-role" }
Cursor AI나 Claude와 같은 MCP 클라이언트의 설정 파일에 다음 설정을 추가하세요:
{ "mcpServers": { "mcp-snowflake-reader": { "command": "docker", "args": [ "run", "-i", "--rm", "mcp-snowflake-reader", "--connection", "{\"account\":\"your-account\",\"user\":\"your-user\",\"password\":\"your-password\",\"warehouse\":\"your-warehouse\",\"database\":\"your-database\",\"schema\":\"your-schema\",\"role\":\"your-role\"}" ] } } }
{ "mcpServers": { "mcp-snowflake-reader": { "command": "uvx", "args": [ "mcp-snowflake-reader", "--connection", "{\"account\":\"your-account\",\"user\":\"your-user\",\"password\":\"your-password\",\"warehouse\":\"your-warehouse\",\"database\":\"your-database\",\"schema\":\"your-schema\",\"role\":\"your-role\"}" ] } } }
Smithery를 통해 Claude Desktop에서 Snowflake Reader를 자동으로 설치하려면:
npx -y @smithery/cli install @fnf-deepHeading/mcp-snowflake-reader --client claude
이 프로젝트는 MIT 라이선스를 따릅니다. 자세한 내용은 LICENSE 파일을 참조하세요.