@berthojoris/mcp-mysql-server 1.16.4 → 1.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,28 @@ All notable changes to the MySQL MCP Server will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [Unreleased]
9
+
10
+ ### Removed
11
+ - Preset-based access control configuration: CLI `--preset` flag and `MCP_PRESET` / `MCP_PERMISSION_PRESET` environment variables. Use `MCP_PERMISSIONS` and optionally `MCP_CATEGORIES`.
12
+ - Global masking configuration via `MCP_MASKING_PROFILE`. If you need enforced masking for exports, use the `safe_export_table` macro's `masking_profile` argument.
13
+
14
+ ## [1.17.0] - 2025-12-12
15
+
16
+ ### Added
17
+ - **Phase 3: AI Enhancement Tools** - 5 new tools for data generation, schema review, visualization, and forecasting:
18
+ - `generate_test_data` - Generate FK-aware SQL INSERT statements for synthetic test data (does not execute)
19
+ - `analyze_schema_patterns` - Detect common schema anti-patterns (missing PKs, wide tables, unindexed FKs, EAV-like design)
20
+ - `visualize_query` - Produce a Mermaid flowchart representation of a query using EXPLAIN FORMAT=JSON
21
+ - `predict_query_performance` - Heuristic prediction of query scan/cost impact under growth assumptions
22
+ - `forecast_database_growth` - Forecast table/database size growth from current INFORMATION_SCHEMA sizes and user-supplied rates
23
+
24
+ ### Changed
25
+ - Updated total tool count from 145 to 150 tools.
26
+
27
+ ### Documentation
28
+ - Updated README.md and DOCUMENTATIONS.md to include Phase 3 AI Enhancement tools.
29
+
8
30
  ## [1.16.4] - 2025-12-12
9
31
 
10
32
  ### Added