@berthojoris/mcp-mysql-server 1.30.0 → 1.31.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 +15 -0
- package/DOCUMENTATIONS.md +306 -4359
- package/README.md +2 -2
- package/dist/config/featureConfig.js +14 -0
- package/dist/index.d.ts +62 -0
- package/dist/index.js +39 -0
- package/dist/mcp-server.js +188 -0
- package/dist/tools/fulltextSearchTools.d.ts +68 -0
- package/dist/tools/fulltextSearchTools.js +445 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ 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
|
+
## [1.31.0] - 2025-12-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Full-Text Search Management** - New category with 6 powerful tools for text search:
|
|
12
|
+
- `create_fulltext_index` - Create FULLTEXT indexes on text columns with support for ngram and mecab parsers (CJK languages)
|
|
13
|
+
- `fulltext_search` - Perform full-text search using MATCH AGAINST with multiple search modes (natural language, boolean, query expansion)
|
|
14
|
+
- `get_fulltext_info` - Retrieve FULLTEXT index information including index names, columns, and parser details
|
|
15
|
+
- `drop_fulltext_index` - Remove FULLTEXT indexes from tables
|
|
16
|
+
- `get_fulltext_stats` - Get statistics for FULLTEXT indexes (document count, size, key length)
|
|
17
|
+
- `optimize_fulltext` - Optimize tables to update FULLTEXT index statistics and reclaim space
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- Updated Index Management category from 4 to 10 tools (added 6 full-text search tools)
|
|
21
|
+
- Updated total tool count from 144 to 150
|
|
22
|
+
|
|
8
23
|
## [1.30.0] - 2025-12-22
|
|
9
24
|
|
|
10
25
|
### Fixed
|