everything vs go-mcp-mysql
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | go-mcp-mysql by Zhwt | |
|---|---|---|
| Stars | ★ 85,748 | ★ 53 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 4 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
go-mcp-mysql · Summary
A production-ready Go-based MCP server for MySQL database operations with read-only mode and query plan checking.
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
go-mcp-mysql · Use cases
- Automating database queries and data analysis through AI assistants
- Enabling natural language interfaces for MySQL database operations
- Safely exploring database structures with read-only access before making changes
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-everythinggo-mcp-mysql · Install
Installation
Option 1: Download Binary
- Get the latest [release](https://github.com/Zhwt/go-mcp-mysql/releases)
- Place it in your
$PATHor easily accessible location
Option 2: Build from Source
go install -v github.com/Zhwt/go-mcp-mysql@latestConfiguration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mysql": {
"command": "go-mcp-mysql",
"args": [
"--host", "localhost",
"--user", "root",
"--pass", "password",
"--port", "3306",
"--db", "mydb"
]
}
}
}