# mysql-mcp-server-complex **Repository Path**: morris131/mysql-mcp-server-complex ## Basic Information - **Project Name**: mysql-mcp-server-complex - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-10 - **Last Updated**: 2026-03-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 🔧 MySQL MCP Server A Model Context Protocol (MCP) server for MySQL database operations. Provides 4 powerful tools for database interaction through any MCP-compatible client. ## ✨ Features - **🔍 Execute SQL Queries** - Run any SELECT, INSERT, UPDATE, DELETE commands - **📊 List Databases** - View all available databases - **📋 List Tables** - Show tables in any database - **🏗️ Describe Tables** - Get detailed table structure information - **🔒 Secure** - Environment-based configuration, no hardcoded credentials - **⚡ Fast** - Built with TypeScript and connection pooling ## 🚀 Quick Start ### Installation ```bash # Clone the repository git clone https://gitee.com/morris131/mysql-mcp-server-complex.git cd mysql-mcp-server-complex # Install dependencies npm install # Build the project npm run build ``` ### Configuration The server uses environment variables for database configuration: ```bash DB_HOST=localhost # MySQL host (default: localhost) DB_USER=root # MySQL username (default: root) DB_PASSWORD= # MySQL password (default: empty) DB_PORT=3306 # MySQL port (default: 3306) DB_CONNECTION_LIMIT=3 # Connection pool size (default: 3) ``` ## 📖 Usage ### With OpenCode Add to your MCP configuration: ```json { "mcp": { "mysql": { "type": "local", "command": [ "node", "/path/to/mysql-mcp-server-complex/dist/index.js" ], "environment": { "DB_HOST": "your_mysql_host", "DB_PORT": "3306", "DB_USER": "your_username", "DB_PASSWORD": "your_password" } } } } ``` Replace the paths and credentials with your actual values. ### With Claude Desktop Add to your `claude_desktop_config.json`: ```json { "mcpServers": { "mysql": { "command": "node", "args": ["path/to/mysql-mcp-server-complex/dist/index.js"], "env": { "DB_HOST": "localhost", "DB_USER": "your_username", "DB_PASSWORD": "your_password", "DB_PORT": "3306" } } } } ``` ### With Cursor IDE Add to your MCP configuration: ```json { "mcpServers": { "mysql": { "command": "node", "args": ["path/to/mysql-mcp-server-complex/dist/index.js"], "env": { "DB_HOST": "localhost", "DB_USER": "your_username", "DB_PASSWORD": "your_password", "DB_PORT": "3306" } } } } ``` ## 🛠️ Available Tools ### 1. `execute_sql` Execute any MySQL query on a specified database. **Parameters:** - `database` (required): Database name to execute the query on - `sql` (required): SQL query to execute (SELECT, INSERT, UPDATE, DELETE, etc.) **Example:** ```json { "database": "testdb", "sql": "SELECT * FROM users WHERE id = ?" } ``` ### 2. `list_databases` List all available databases on the MySQL server. **Parameters:** None required **Example:** `{}` ### 3. `list_tables` List all tables in a specified database. **Parameters:** - `database` (required): Database name **Example:** ```json { "database": "testdb" } ``` ### 4. `describe_table` Get detailed information about a table's structure. **Parameters:** - `database` (required): Database name - `table` (required): Table name to describe **Example:** ```json { "database": "testdb", "table": "users" } ``` ## 🔧 Development ```bash # Install dependencies npm install # Development mode (watch for changes) npm run dev # Build for production npm run build # Start the server npm start ``` ## 📦 Project Structure ``` mysql-mcp-server-complex/ ├── src/ │ └── index.ts # Main MCP server implementation ├── dist/ # Compiled JavaScript (auto-generated) ├── package.json # Project dependencies and scripts ├── tsconfig.json # TypeScript configuration ├── .gitignore # Git ignore rules └── README.md # This file ``` ## 🔒 Security - **No hardcoded credentials** - All database connection details come from environment variables - **Connection pooling** - Efficient and secure database connections - **Error handling** - Proper error messages without exposing sensitive information ## 🤝 Contributing 1. Fork the repository 2. Create your feature branch (`git checkout -b feature/amazing-feature`) 3. Commit your changes (`git commit -m 'Add some amazing feature'`) 4. Push to the branch (`git push origin feature/amazing-feature`) 5. Open a Pull Request **Repository:** https://gitee.com/morris131/mysql-mcp-server-complex.git ## 🙏 Acknowledgments - Built with the [Model Context Protocol SDK](https://github.com/modelcontextprotocol/typescript-sdk) - Uses [mysql2](https://github.com/sidorares/node-mysql2) for MySQL connectivity - Inspired by the MCP community ## 📞 Support If you encounter any issues or have questions: 1. Check the [Issues](https://gitee.com/morris131/mysql-mcp-server-complex/issues) page 2. Create a new issue if your problem isn't already reported 3. Provide as much detail as possible including error messages and configuration