filesystem vs mysql_mcp_server_pro
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mysql_mcp_server_pro by wenb1n-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 244 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | DatabaseDeveloper ToolsMonitoring |
| Language | TypeScript | Python |
| Last commit | this month | 9 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mysql_mcp_server_pro · Summary
A comprehensive MCP server for MySQL databases with advanced query, analysis, and optimization capabilities.
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_pro · Use cases
- Database administrators monitoring MySQL health status and analyzing performance issues
- Developers executing secure SQL queries with proper access controls
- Data analysts optimizing slow queries and analyzing database indexes
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_pro · Install
Installation
- Install the package:
pip install mysql_mcp_server_pro- Configure environment variables in a .env file:
MYSQL_HOST=localhost
MYSQL_PORT=3306
MYSQL_USER=your_username
MYSQL_PASSWORD=your_password
MYSQL_DATABASE=your_database
MYSQL_ROLE=readonly # or writer, admin- Start the service:
# SSE mode
mysql_mcp_server_pro --mode sse --envfile /path/to/.env
# Streamable Http mode (default)
mysql_mcp_server_pro --envfile /path/to/.env
# With OAuth authentication
mysql_mcp_server_pro --oauth trueClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mysql": {
"command": "uvx",
"args": [
"--from",
"mysql_mcp_server_pro",
"mysql_mcp_server_pro",
"--mode",
"stdio"
],
"env": {
"MYSQL_HOST": "your_host",
"MYSQL_PORT": "3306",
"MYSQL_USER": "your_username",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database",
"MYSQL_ROLE": "admin"
}
}
}
}