mysql_mcp_server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mysql_mcp_server by designcomputer | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1,251 | ★ 85,748 |
| 30d uses | — | — |
| Score | 52 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsSecurity | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
mysql_mcp_server · Summary
MCP server enabling secure interaction with MySQL databases through structured API.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mysql_mcp_server · Use cases
- Data analysis by AI models through secure SQL queries
- Database exploration and schema inspection for AI assistants
- Integration of MySQL data with AI-powered applications
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 · Install
Installation
Manual Installation
pip install mysql-mcp-serverInstalling via Smithery
To install MySQL MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mysql-mcp-server):
npx -y @smithery/cli install mysql-mcp-server --client claudeConfiguration
Set the following environment variables:
MYSQL_HOST=localhost # Database host
MYSQL_PORT=3306 # Optional: Database port (defaults to 3306 if not specified)
MYSQL_USER=your_username
MYSQL_PASSWORD=your_password
MYSQL_DATABASE=your_databaseWith Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"mysql": {
"command": "uv",
"args": [
"--directory",
"path/to/mysql_mcp_server",
"run",
"mysql_mcp_server"
],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3306",
"MYSQL_USER": "your_username",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database"
}
}
}
}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.