A Model Context Protocol (MCP) server that enables Claude Desktop to interact with MySQL databases through natural language queries.
- π Execute read-only SQL queries through Claude Desktop
- π‘οΈ Built-in security with query validation (only SELECT statements allowed)
- π Easy integration with Claude Desktop
- π JSON formatted query results
- π Environment-based configuration for database credentials
- Node.js (v16 or higher) - If using mise, update the command path accordingly
- MySQL database server
- Claude Desktop application
npm install -g @hovecapital/read-only-mysql-mcp-server
If you're using Claude Code, you can easily install this MCP server:
# Clone the repository
git clone https://github.com/hovecapital/read-only-local-mysql-mcp-server.git
cd read-only-local-mysql-mcp-server
# Install dependencies and build
npm install
npm run build
Then configure Claude Code by adding to your MCP settings.
Save the repository to a directory on your system:
mkdir ~/mcp-servers/mysql
cd ~/mcp-servers/mysql
git clone https://github.com/hovecapital/read-only-local-mysql-mcp-server.git .
npm install
npm run build
If you're using Claude Code, add the MySQL server to your MCP settings:
-
Open your Claude Code settings (typically in
~/.config/claude-code/settings.json
on macOS/Linux or%APPDATA%\claude-code\settings.json
on Windows) -
Add the MySQL MCP server configuration:
{
"mcp": {
"servers": {
"mysql": {
"command": "node",
"args": ["/absolute/path/to/read-only-local-mysql-mcp-server/dist/index.js"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "3306",
"DB_DATABASE": "your_database_name",
"DB_USERNAME": "your_username",
"DB_PASSWORD": "your_password"
}
}
}
}
}
- Restart Claude Code for the changes to take effect.
Open your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add the MySQL server configuration:
{
"mcpServers": {
"mysql": {
"command": "node",
"args": ["/absolute/path/to/read-only-local-mysql-mcp-server/dist/index.js"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "3306",
"DB_DATABASE": "your_database_name",
"DB_USERNAME": "your_username",
"DB_PASSWORD": "your_password"
}
}
}
}
If you're using mise for Node.js version management, make sure to use the full path to the Node.js executable in your configuration.
Variable | Description | Default |
---|---|---|
DB_HOST |
MySQL server hostname | mysql |
DB_PORT |
MySQL server port | 3306 |
DB_DATABASE |
Database name | database |
DB_USERNAME |
MySQL username | root |
DB_PASSWORD |
MySQL password | (empty) |
- Restart Claude Desktop after updating the configuration
- Start chatting with Claude about your database
"Show me all tables in my database"
"What's the structure of the users table?"
"Get the first 10 records from the products table"
"How many orders were placed last month?"
"Show me users with email addresses ending in @gmail.com"
Claude will automatically convert your natural language requests into appropriate SQL queries and execute them against your database.
The server only allows SELECT queries. The following operations are blocked:
INSERT
- Adding new recordsUPDATE
- Modifying existing recordsDELETE
- Removing recordsDROP
- Removing tables/databasesALTER
- Modifying table structureCREATE
- Creating new tables/databases
For enhanced security, create a dedicated read-only user for the MCP server:
-- Create a read-only user
CREATE USER 'claude_readonly'@'localhost' IDENTIFIED BY 'secure_password';
-- Grant only SELECT permissions on your specific database
GRANT SELECT ON your_database_name.* TO 'claude_readonly'@'localhost';
-- Apply the changes
FLUSH PRIVILEGES;
- Verify MySQL is running: Check if your MySQL server is active
- Check credentials: Ensure username/password are correct
- Network connectivity: Confirm Claude Desktop can reach your MySQL server
- Restart required: Always restart Claude Desktop after configuration changes
- Path accuracy: Ensure the absolute path to
dist/index.js
is correct - JSON syntax: Validate your
claude_desktop_config.json
format
To see server logs, you can run the server manually:
node dist/index.js
~/mcp-servers/mysql/
βββ src/
β βββ index.ts
βββ dist/
β βββ index.js
β βββ index.d.ts
βββ package.json
βββ tsconfig.json
βββ node_modules/
- @modelcontextprotocol/sdk: MCP protocol implementation
- mysql2: Modern MySQL client for Node.js with Promise support
Feel free to submit issues and enhancement requests!
This project is open source and available under the MIT License.
If you encounter issues:
- Check the troubleshooting section above
- Verify your MySQL connection independently
- Ensure Claude Desktop is updated to the latest version
- Review the Claude Desktop MCP documentation
Note: This server is designed for development and analysis purposes. For production use, consider additional security measures and monitoring.