MCP Catalogs
Home

everything vs mysql-mcp-server

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
mysql-mcp-server
by TickHaiJun
Stars★ 85,748★ 31
30d uses
Score7741
Official
Categories
Developer ToolsAI / LLM ToolsOther
DatabaseDeveloper ToolsAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis month9 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mysql-mcp-server · Summary

A Node.js MCP server that connects to MySQL databases, providing SQL query execution and metadata retrieval.

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 · Use cases

  • AI assistants that need to query or analyze MySQL data
  • Database administrators needing automated management tools
  • Data analysis workflows requiring SQL execution capability

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

mysql-mcp-server · Install

Installation

  1. Clone the repository
git clone https://github.com/TickHaiJun/mysql-mcp-server.git
cd mysql-mcp-server
  1. Install dependencies
npm install
  1. Configure database connection (create .env file)
DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASSWORD=yourpassword
DB_NAME=yourdatabase
  1. Start the server
node src/index.js

Claude Desktop Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "mysql": {
      "command": "node",
      "args": ["/path/to/mysql-mcp-server/src/index.js"],
      "env": {
        "DB_HOST": "localhost",
        "DB_PORT": "3306",
        "DB_USER": "yourusername",
        "DB_PASSWORD": "yourpassword",
        "DB_NAME": "yourdatabase"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.