@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 +22 -0
- package/DOCUMENTATIONS.md +109 -548
- package/README.md +85 -486
- package/bin/mcp-mysql.js +57 -107
- package/dist/config/featureConfig.d.ts +2 -29
- package/dist/config/featureConfig.js +18 -211
- package/dist/index.d.ts +59 -12
- package/dist/index.js +44 -4
- package/dist/mcp-server.js +155 -9
- package/dist/security/securityLayer.js +2 -3
- package/dist/tools/forecastingTools.d.ts +36 -0
- package/dist/tools/forecastingTools.js +256 -0
- package/dist/tools/queryVisualizationTools.d.ts +22 -0
- package/dist/tools/queryVisualizationTools.js +155 -0
- package/dist/tools/schemaPatternTools.d.ts +19 -0
- package/dist/tools/schemaPatternTools.js +253 -0
- package/dist/tools/testDataTools.d.ts +26 -0
- package/dist/tools/testDataTools.js +325 -0
- package/manifest.json +109 -1
- package/package.json +1 -1
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
|