MCP Catalogs
Home

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
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
DatabaseDeveloper ToolsAI / LLM Tools
LanguageTypeScriptGo
Last committhis month4 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-everything

go-mcp-mysql · Install

Installation

Option 1: Download Binary

  1. Get the latest [release](https://github.com/Zhwt/go-mcp-mysql/releases)
  2. Place it in your $PATH or easily accessible location

Option 2: Build from Source

go install -v github.com/Zhwt/go-mcp-mysql@latest

Configuration

Add to Claude Desktop configuration:

{
  "mcpServers": {
    "mysql": {
      "command": "go-mcp-mysql",
      "args": [
        "--host", "localhost",
        "--user", "root",
        "--pass", "password",
        "--port", "3306",
        "--db", "mydb"
      ]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.