Skip to main content
Glama

MySQL-Performance-Tuner-Mcp

__init__.py2.75 kB
""" MySQL tuning tools package. Contains tool handlers for: - Performance analysis - Index tuning - Health monitoring - InnoDB analysis - Statement analysis - Memory calculations - Storage engine analysis - Replication status - Security analysis """ from .toolhandler import ToolHandler from .tools_health import ( ActiveQueriesToolHandler, DatabaseHealthToolHandler, SettingsReviewToolHandler, WaitEventsToolHandler, ) from .tools_index import ( IndexRecommendationsToolHandler, IndexStatsToolHandler, UnusedIndexesToolHandler, ) from .tools_performance import ( AnalyzeQueryToolHandler, GetSlowQueriesToolHandler, TableStatsToolHandler, ) from .tools_innodb import ( InnoDBStatusToolHandler, InnoDBBufferPoolToolHandler, InnoDBTransactionsToolHandler, ) from .tools_statements import ( StatementAnalysisToolHandler, StatementsTempTablesToolHandler, StatementsSortingToolHandler, StatementsFullScansToolHandler, StatementErrorsToolHandler, ) from .tools_memory import ( MemoryCalculationsToolHandler, MemoryByHostToolHandler, TableMemoryUsageToolHandler, ) from .tools_engines import ( StorageEngineAnalysisToolHandler, FragmentedTablesToolHandler, AutoIncrementAnalysisToolHandler, ) from .tools_replication import ( ReplicationStatusToolHandler, GaleraClusterToolHandler, GroupReplicationToolHandler, ) from .tools_security import ( SecurityAnalysisToolHandler, UserPrivilegesToolHandler, AuditLogToolHandler, ) __all__ = [ # Base "ToolHandler", # Performance "GetSlowQueriesToolHandler", "AnalyzeQueryToolHandler", "TableStatsToolHandler", # Index "IndexRecommendationsToolHandler", "UnusedIndexesToolHandler", "IndexStatsToolHandler", # Health "DatabaseHealthToolHandler", "ActiveQueriesToolHandler", "SettingsReviewToolHandler", "WaitEventsToolHandler", # InnoDB "InnoDBStatusToolHandler", "InnoDBBufferPoolToolHandler", "InnoDBTransactionsToolHandler", # Statement Analysis "StatementAnalysisToolHandler", "StatementsTempTablesToolHandler", "StatementsSortingToolHandler", "StatementsFullScansToolHandler", "StatementErrorsToolHandler", # Memory "MemoryCalculationsToolHandler", "MemoryByHostToolHandler", "TableMemoryUsageToolHandler", # Storage Engines "StorageEngineAnalysisToolHandler", "FragmentedTablesToolHandler", "AutoIncrementAnalysisToolHandler", # Replication "ReplicationStatusToolHandler", "GaleraClusterToolHandler", "GroupReplicationToolHandler", # Security "SecurityAnalysisToolHandler", "UserPrivilegesToolHandler", "AuditLogToolHandler", ]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/isdaniel/MySQL-Performance-Tuner-Mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server