snowflake-mcp-server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
snowflake-mcp-server by dynamike | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 13 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 13 mo ago | this month |
snowflake-mcp-server · Summary
An MCP server for secure read-only queries to Snowflake databases with multiple authentication methods.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
snowflake-mcp-server · Use cases
- Data analysts can explore Snowflake databases through natural language queries
- Teams can connect Claude Desktop to Snowflake for business intelligence tasks
- Developers can integrate Snowflake data access into AI-powered applications
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
snowflake-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/dynamike/snowflake-mcp-server.git
cd snowflake-mcp-server- Install the package:
uv pip install -e .- Create a
.envfile with your Snowflake credentials (copy from.env.private_key.exampleor.env.browser.example)
Claude Desktop Integration
"snowflake-mcp-server": {
"command": "uv",
"args": [
"--directory",
"/<path-to-code>/snowflake-mcp-server",
"run",
"snowflake-mcp-stdio"
]
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.