everything vs SmartDB_MCP
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | SmartDB_MCP by wenb1n-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 79 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsMonitoring |
| Language | TypeScript | Python |
| Last commit | this month | 8 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
SmartDB_MCP · Summary
Universal database MCP server connecting to MySQL, PostgreSQL, SQL Server, MariaDB, DM8, Oracle with OAuth2 authentication, health checks, SQL optimization, and index health detection.
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
SmartDB_MCP · Use cases
- Database administrators can monitor health status and optimize performance across multiple database systems
- Developers can explore database schemas and execute SQL queries securely through MCP clients
- Data analysts can generate optimized SQL queries and analyze index health for better performance
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-everythingSmartDB_MCP · Install
Installation
pip Installation
pip install SmartDB-MCP
smartdb --envfile=/path/to/.env --oauth=trueDocker Installation
docker-compose up -dLocal Development
uv sync
uv run -m core.server --mode stdioClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"smartdb": {
"name": "smartdb",
"type": "stdio",
"command": "uv",
"args": [
"--directory",
"/path/to/SmartDB/",
"run",
"-m",
"core.server",
"--mode",
"stdio"
],
"env": {
"DATABASE_CONFIG_FILE": "/path/to/database_config.json"
}
}
}
}