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 | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this 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
- Install dependencies:
pip install -r requirements.txt - Create a
config.jsonfile in the same directory asserver.pywith your database connection details - 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