mysqltuner_mcp
Verified Safeby isdaniel
Overview
Provides AI-powered MySQL database performance tuning and analysis through the Model Context Protocol.
Installation
python -m mysqltuner_mcpEnvironment Variables
- MYSQL_URI
- MYSQL_POOL_SIZE
- MYSQL_SSL
- MYSQL_SSL_CA
- MYSQL_SSL_CERT
- MYSQL_SSL_KEY
- MYSQL_SSL_VERIFY_CERT
- MYSQL_SSL_VERIFY_IDENTITY
- PORT
Security Notes
The server primarily focuses on read-only analysis. Database interactions are handled via `aiomysql` and correctly use parameterized queries (`execute_query` with `params`), mitigating common SQL injection risks. No direct `eval` or `exec` of user input is observed. All tools are marked `read_only_hint=True` and `destructive_hint=False`, indicating a design intent to avoid data modification.
Similar Servers
cosmotop
System monitoring and information exposure via MCP protocol.
mcp-mysql-server
Provides an MCP-compliant interface for AI models to securely interact with a MySQL database for CRUD operations, schema inspection, and performance analysis.
mcp_sql_demo
Provides secure, multi-database access for LLMs to inspect MySQL schemas and execute SQL queries, supporting both read and configurable write operations with fine-grained schema-specific permissions.
mysql-mcp-server
This server provides a FastMCP interface to interact with a MySQL database, allowing retrieval of database schema and execution of arbitrary SQL queries.