mssql-mcp vs time
Side-by-side comparison to help you pick between these two MCP servers.
mssql-mcp by Aaronontheweb | time by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 145 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsOps & Infra | ProductivityDeveloper ToolsCommunication |
| Language | C# | TypeScript |
| Last commit | 4 mo ago | this month |
mssql-mcp · Summary
A .NET-powered MCP server for Microsoft SQL Server with robust tools for schema discovery, query execution, and connection validation.
time · Summary
A comprehensive MCP server providing time and timezone conversion tools with automatic system timezone detection.
mssql-mcp · Use cases
- AI-powered data analysis where AI agents can explore and query SQL databases directly
- Database administration automation through natural language interfaces
- Integration with AI coding assistants to provide database context during development
time · Use cases
- Assisting with international meeting scheduling across time zones
- Providing real-time time information for location-based queries
- Enabling time conversion for travel planning and itineraries
mssql-mcp · Install
Installation
Option 1: Docker (Recommended)
dotnet publish --os linux --arch x64 /t:PublishContainer
docker run -it --rm -e MSSQL_CONNECTION_STRING="Server=host.docker.internal;Database=MyDB;Trusted_Connection=true;" mssql-mcp:latestOption 2: Local Binary
Run the built binary directly:
/path/to/mssql-mcp/src/MSSQL.MCP/bin/Release/net9.0/MSSQL.MCPClaude Desktop Configuration
{
"mcpServers": {
"mssql": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"MSSQL_CONNECTION_STRING",
"mssql-mcp:latest"
],
"env": {
"MSSQL_CONNECTION_STRING": "Server=host.docker.internal,1533; Database=MyDb; User Id=myUser; Password=My(!)Password;TrustServerCertificate=true;"
}
}
}
}time · Install
Installation Options
**Using uv (recommended):**
uvx mcp-server-time**Using PIP:**
pip install mcp-server-time
python -m mcp_server_time**Configure for Claude Desktop:**
{
"mcpServers": {
"time": {
"command": "uvx",
"args": ["mcp-server-time"]
}
}
}