MCP Catalogs
Home

filesystem vs mysql-mcp-server

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

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

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

mysql-mcp-server · Summary

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

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.