mssql-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
mssql-mcp by daobataotie | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 39 | ★ 85,748 |
| 30d uses | — | — |
| Score | 39 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsProductivity |
| 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.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
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
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
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"]
}
}
}```memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}