@berthojoris/mcp-mysql-server 1.2.1 → 1.2.3

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 (2) hide show
  1. package/README.md +1 -18
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,7 +11,7 @@ A fully-featured **Model Context Protocol (MCP)** server for MySQL database inte
11
11
 
12
12
  - ✅ **Full MCP Protocol Support** - Works with Claude Desktop, Cline, Windsurf, and any MCP-compatible AI agent
13
13
  - 🔒 **Secure by Default** - Parameterized queries, SQL injection protection, permission-based access control
14
- - 🛠️ **27 Powerful Tools** - Complete database operations (CRUD, DDL, queries, schema inspection, transactions, stored procedures)
14
+ - 🛠️ **30 Powerful Tools** - Complete database operations (CRUD, DDL, queries, schema inspection, transactions, stored procedures, bulk operations)
15
15
  - 🎛️ **Dynamic Per-Project Permissions** - Each AI agent can have different access levels
16
16
  - 🏗️ **DDL Support** - Create, alter, and drop tables (when explicitly enabled)
17
17
  - 💰 **Transaction Support** - Full ACID transaction management (BEGIN, COMMIT, ROLLBACK)
@@ -89,23 +89,6 @@ npm run build
89
89
  }
90
90
  ```
91
91
 
92
- **Alternative: Local development (if you cloned the repository):**
93
-
94
- ```json
95
- {
96
- "mcpServers": {
97
- "mysql": {
98
- "command": "node",
99
- "args": [
100
- "C:\\path\\to\\mysql-mcp\\bin\\mcp-mysql.js",
101
- "mysql://user:password@localhost:3306/database",
102
- "list,read,utility"
103
- ]
104
- }
105
- }
106
- }
107
- ```
108
-
109
92
  #### Cline (VS Code Extension)
110
93
 
111
94
  Add to Cline MCP settings (same JSON format as Claude Desktop).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@berthojoris/mcp-mysql-server",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "Model Context Protocol server for MySQL database integration with dynamic per-project permissions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",