@berthojoris/mcp-mysql-server 1.16.1 → 1.16.2

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +5 -4
  3. package/package.json +89 -89
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ 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.16.2] - 2025-12-11
9
+
10
+ ### Fixed
11
+ - **Documentation Update** - Added missing `ai_enhancement` category to the Documentation Categories table in README.md
12
+ - The table now correctly shows all 24 documentation categories
13
+ - Added entry for `ai_enhancement` category with 8 tools and description
14
+
8
15
  ## [1.16.1] - 2025-12-09
9
16
 
10
17
  ### Improved
package/README.md CHANGED
@@ -152,7 +152,7 @@ Most AI agents use a similar JSON configuration format. Use the appropriate conf
152
152
  "-y",
153
153
  "@berthojoris/mysql-mcp",
154
154
  "mysql://user:password@localhost:3306/database",
155
- "list,read,utility"
155
+ "list,read,utility,create,update,ddl",
156
156
  ]
157
157
  }
158
158
  }
@@ -168,9 +168,9 @@ Most AI agents use a similar JSON configuration format. Use the appropriate conf
168
168
  "args": [
169
169
  "-y",
170
170
  "@berthojoris/mysql-mcp",
171
- "mysql://user:password@localhost:3306/database",
172
- "list,read,utility",
173
- "database_discovery,crud_operations,custom_queries"
171
+ "mysql://user:password@localhost:3306/database_name_here",
172
+ "list,read,utility,create,update,ddl",
173
+ "database_discovery,crud_operations,custom_queries,schema_management,index_management,constraint_management,table_maintenance,query_optimization,analysis"
174
174
  ]
175
175
  }
176
176
  }
@@ -496,6 +496,7 @@ Use these categories for fine-grained control that matches the tool organization
496
496
  | `data_migration` | 5 | Copy, move, clone, sync table data |
497
497
  | `schema_migrations` | 9 | Version control for database schema |
498
498
  | `analysis` | 4 | AI context optimization and data analysis |
499
+ | `ai_enhancement` | 8 | AI-powered query building, smart search, and documentation generation |
499
500
 
500
501
  ### Legacy Categories (Backward Compatible)
501
502
 
package/package.json CHANGED
@@ -1,89 +1,89 @@
1
- {
2
- "name": "@berthojoris/mcp-mysql-server",
3
- "version": "1.16.1",
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
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "bin": {
8
- "mcp-mysql": "bin/mcp-mysql.js"
9
- },
10
- "scripts": {
11
- "build": "tsc",
12
- "start": "node dist/server.js",
13
- "start:mcp": "node dist/mcp-server.js",
14
- "start:api": "node dist/server.js",
15
- "dev": "ts-node src/index.ts",
16
- "dev:mcp": "ts-node src/mcp-server.ts",
17
- "dev:api": "ts-node src/server.ts",
18
- "test": "jest",
19
- "prepare": "npm run build",
20
- "prepublishOnly": "npm run build"
21
- },
22
- "keywords": [
23
- "mcp",
24
- "mysql",
25
- "database",
26
- "llm",
27
- "ai",
28
- "model-context-protocol",
29
- "claude",
30
- "cline",
31
- "windsurf",
32
- "codex",
33
- "openai-codex",
34
- "agent",
35
- "database-tools",
36
- "sql",
37
- "mysql-client",
38
- "ai-tools"
39
- ],
40
- "author": "Bertho Joris <berthojoris@gmail.com>",
41
- "license": "MIT",
42
- "repository": {
43
- "type": "git",
44
- "url": "git+https://github.com/berthojoris/mysql-mcp.git"
45
- },
46
- "bugs": {
47
- "url": "https://github.com/berthojoris/mysql-mcp/issues"
48
- },
49
- "homepage": "https://github.com/berthojoris/mysql-mcp#readme",
50
- "files": [
51
- "dist",
52
- "bin",
53
- "README.md",
54
- "DOCUMENTATIONS.md",
55
- "CHANGELOG.md",
56
- "LICENSE",
57
- "manifest.json"
58
- ],
59
- "engines": {
60
- "node": ">=18.0.0"
61
- },
62
- "dependencies": {
63
- "@modelcontextprotocol/sdk": "^1.20.0",
64
- "ajv": "^8.12.0",
65
- "cors": "^2.8.5",
66
- "dotenv": "^16.3.1",
67
- "express": "^4.18.2",
68
- "express-rate-limit": "^7.1.5",
69
- "helmet": "^7.1.0",
70
- "jsonwebtoken": "^9.0.2",
71
- "morgan": "^1.10.0",
72
- "mysql2": "^3.6.1",
73
- "winston": "^3.11.0"
74
- },
75
- "devDependencies": {
76
- "@types/cors": "^2.8.17",
77
- "@types/express": "^4.17.21",
78
- "@types/helmet": "^0.0.48",
79
- "@types/jest": "^29.5.4",
80
- "@types/jsonwebtoken": "^9.0.5",
81
- "@types/morgan": "^1.9.9",
82
- "@types/node": "^20.6.0",
83
- "@types/winston": "^2.4.4",
84
- "jest": "^29.6.4",
85
- "ts-jest": "^29.1.1",
86
- "ts-node": "^10.9.1",
87
- "typescript": "^5.2.2"
88
- }
89
- }
1
+ {
2
+ "name": "@berthojoris/mcp-mysql-server",
3
+ "version": "1.16.2",
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
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "bin": {
8
+ "mcp-mysql": "bin/mcp-mysql.js"
9
+ },
10
+ "scripts": {
11
+ "build": "tsc",
12
+ "start": "node dist/server.js",
13
+ "start:mcp": "node dist/mcp-server.js",
14
+ "start:api": "node dist/server.js",
15
+ "dev": "ts-node src/index.ts",
16
+ "dev:mcp": "ts-node src/mcp-server.ts",
17
+ "dev:api": "ts-node src/server.ts",
18
+ "test": "jest",
19
+ "prepare": "npm run build",
20
+ "prepublishOnly": "npm run build"
21
+ },
22
+ "keywords": [
23
+ "mcp",
24
+ "mysql",
25
+ "database",
26
+ "llm",
27
+ "ai",
28
+ "model-context-protocol",
29
+ "claude",
30
+ "cline",
31
+ "windsurf",
32
+ "codex",
33
+ "openai-codex",
34
+ "agent",
35
+ "database-tools",
36
+ "sql",
37
+ "mysql-client",
38
+ "ai-tools"
39
+ ],
40
+ "author": "Bertho Joris <berthojoris@gmail.com>",
41
+ "license": "MIT",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/berthojoris/mysql-mcp.git"
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/berthojoris/mysql-mcp/issues"
48
+ },
49
+ "homepage": "https://github.com/berthojoris/mysql-mcp#readme",
50
+ "files": [
51
+ "dist",
52
+ "bin",
53
+ "README.md",
54
+ "DOCUMENTATIONS.md",
55
+ "CHANGELOG.md",
56
+ "LICENSE",
57
+ "manifest.json"
58
+ ],
59
+ "engines": {
60
+ "node": ">=18.0.0"
61
+ },
62
+ "dependencies": {
63
+ "@modelcontextprotocol/sdk": "^1.20.0",
64
+ "ajv": "^8.12.0",
65
+ "cors": "^2.8.5",
66
+ "dotenv": "^16.3.1",
67
+ "express": "^4.18.2",
68
+ "express-rate-limit": "^7.1.5",
69
+ "helmet": "^7.1.0",
70
+ "jsonwebtoken": "^9.0.2",
71
+ "morgan": "^1.10.0",
72
+ "mysql2": "^3.6.1",
73
+ "winston": "^3.11.0"
74
+ },
75
+ "devDependencies": {
76
+ "@types/cors": "^2.8.17",
77
+ "@types/express": "^4.17.21",
78
+ "@types/helmet": "^0.0.48",
79
+ "@types/jest": "^29.5.4",
80
+ "@types/jsonwebtoken": "^9.0.5",
81
+ "@types/morgan": "^1.9.9",
82
+ "@types/node": "^20.6.0",
83
+ "@types/winston": "^2.4.4",
84
+ "jest": "^29.6.4",
85
+ "ts-jest": "^29.1.1",
86
+ "ts-node": "^10.9.1",
87
+ "typescript": "^5.2.2"
88
+ }
89
+ }