@berthojoris/mcp-mysql-server 1.24.0 → 1.25.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 +10 -0
- package/README.md +1 -1
- package/dist/config/featureConfig.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -40,6 +40,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
40
40
|
- Updated Last Updated timestamp in README.md
|
|
41
41
|
- Version increment for new tool implementation
|
|
42
42
|
|
|
43
|
+
## [1.25.0] - 2025-12-19
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
- Added `list_all_tools` tool to permission configuration with LIST category
|
|
47
|
+
- Tool is now available for all permission sets that include "list" access
|
|
48
|
+
- Updated both tool category mapping and documentation category mapping
|
|
49
|
+
|
|
50
|
+
### Changed
|
|
51
|
+
- Incremented version to 1.25.0 for permission configuration fix
|
|
52
|
+
|
|
43
53
|
## [Unreleased]
|
|
44
54
|
|
|
45
55
|
### Security
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
**A production-ready Model Context Protocol (MCP) server for MySQL database integration with AI agents**
|
|
6
6
|
|
|
7
|
-
**Last Updated:** 2025-12-19 03:
|
|
7
|
+
**Last Updated:** 2025-12-19 10:03:00
|
|
8
8
|
|
|
9
9
|
[](https://www.npmjs.com/package/@berthojoris/mysql-mcp)
|
|
10
10
|
[](https://www.npmjs.com/package/@berthojoris/mysql-mcp)
|
|
@@ -62,6 +62,7 @@ exports.toolCategoryMap = {
|
|
|
62
62
|
listDatabases: ToolCategory.LIST,
|
|
63
63
|
listTables: ToolCategory.LIST,
|
|
64
64
|
readTableSchema: ToolCategory.LIST,
|
|
65
|
+
list_all_tools: ToolCategory.LIST,
|
|
65
66
|
// Analysis tools (added here to group with database tools)
|
|
66
67
|
getDatabaseSummary: ToolCategory.LIST,
|
|
67
68
|
getSchemaERD: ToolCategory.LIST,
|
|
@@ -250,6 +251,7 @@ exports.toolDocCategoryMap = {
|
|
|
250
251
|
exportTableToCSV: DocCategory.UTILITIES,
|
|
251
252
|
exportQueryToCSV: DocCategory.UTILITIES,
|
|
252
253
|
read_changelog: DocCategory.UTILITIES,
|
|
254
|
+
list_all_tools: DocCategory.UTILITIES,
|
|
253
255
|
// Transaction Management
|
|
254
256
|
beginTransaction: DocCategory.TRANSACTION_MANAGEMENT,
|
|
255
257
|
commitTransaction: DocCategory.TRANSACTION_MANAGEMENT,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@berthojoris/mcp-mysql-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "Model Context Protocol server for MySQL database integration with dynamic per-project permissions, backup/restore, data import/export, and data migration capabilities",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|