MCP Catalogs
Home

mssql-mcp vs everything

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

mssql-mcp
by daobataotie
everything
by modelcontextprotocol
Stars★ 39★ 85,748
30d uses
Score3977
Official
Categories
DatabaseDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit12 mo agothis month

mssql-mcp · Summary

A Python-based MCP server that enables SQL query execution and business intelligence capabilities for MSSQL databases.

everything · Summary

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

mssql-mcp · Use cases

  • Business analysts querying sales data and generating insights
  • Developers interacting with MSSQL databases through AI assistants
  • Teams automating database reporting and analytics workflows

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

mssql-mcp · Install

  1. Install dependencies: pip install -r requirements.txt
  2. Create a config.json file in the same directory as server.py with your database connection details
  3. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "mssql": {
      "command": "python",
      "args": ["/path/to/mssql-mcp/src/server.py"]
    }
  }
}```

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.