MCP Catalogs
Home

snowflake-mcp-server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

snowflake-mcp-server
by dynamike
everything
by modelcontextprotocol
Stars★ 13★ 85,748
30d uses
Score3677
Official
Categories
DatabaseDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit13 mo agothis month

snowflake-mcp-server · Summary

An MCP server for secure read-only queries to Snowflake databases with multiple authentication methods.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

snowflake-mcp-server · Install

Installation

  1. Clone the repository:
git clone https://github.com/dynamike/snowflake-mcp-server.git
cd snowflake-mcp-server
  1. Install the package:
uv pip install -e .
  1. Create a .env file with your Snowflake credentials (copy from .env.private_key.example or .env.browser.example)

Claude Desktop Integration

"snowflake-mcp-server": {
  "command": "uv",
  "args": [
    "--directory",
    "/<path-to-code>/snowflake-mcp-server",
    "run",
    "snowflake-mcp-stdio"
  ]
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.