everything vs mysql_mcp_server_pro
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mysql_mcp_server_pro by wenb1n-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 244 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsMonitoring |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mysql_mcp_server_pro · Summary
A comprehensive MCP server for MySQL databases with advanced query, analysis, and optimization capabilities.
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
mysql_mcp_server_pro · Use cases
- Database administrators monitoring MySQL health status and analyzing performance issues
- Developers executing secure SQL queries with proper access controls
- Data analysts optimizing slow queries and analyzing database indexes
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-everythingmysql_mcp_server_pro · Install
Installation
- Install the package:
pip install mysql_mcp_server_pro- Configure environment variables in a .env file:
MYSQL_HOST=localhost
MYSQL_PORT=3306
MYSQL_USER=your_username
MYSQL_PASSWORD=your_password
MYSQL_DATABASE=your_database
MYSQL_ROLE=readonly # or writer, admin- Start the service:
# SSE mode
mysql_mcp_server_pro --mode sse --envfile /path/to/.env
# Streamable Http mode (default)
mysql_mcp_server_pro --envfile /path/to/.env
# With OAuth authentication
mysql_mcp_server_pro --oauth trueClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mysql": {
"command": "uvx",
"args": [
"--from",
"mysql_mcp_server_pro",
"mysql_mcp_server_pro",
"--mode",
"stdio"
],
"env": {
"MYSQL_HOST": "your_host",
"MYSQL_PORT": "3306",
"MYSQL_USER": "your_username",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database",
"MYSQL_ROLE": "admin"
}
}
}
}