-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.39 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@berthojoris/mcp-mysql-server",
"version": "1.33.6",
"description": "Model Context Protocol server for MySQL database integration with dynamic per-project permissions, backup/restore, data import/export, and data migration capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"bin": {
"mcp-mysql": "bin/mcp-mysql.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"start:mcp": "node dist/mcp-server.js",
"start:api": "node dist/server.js",
"dev": "ts-node src/index.ts",
"dev:mcp": "ts-node src/mcp-server.ts",
"dev:api": "ts-node src/server.ts",
"test": "jest --passWithNoTests",
"lint": "eslint src/**/*.ts --quiet",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mysql",
"database",
"llm",
"ai",
"model-context-protocol",
"claude",
"cline",
"windsurf",
"codex",
"openai-codex",
"agent",
"database-tools",
"sql",
"mysql-client",
"ai-tools"
],
"author": "Bertho Joris <berthojoris@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/berthojoris/mysql-mcp.git"
},
"bugs": {
"url": "https://github.com/berthojoris/mysql-mcp/issues"
},
"homepage": "https://github.com/berthojoris/mysql-mcp#readme",
"files": [
"dist",
"bin",
"README.md",
"DOCUMENTATIONS.md",
"CHANGELOG.md",
"LICENSE",
"manifest.json"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.6.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "^0.0.48",
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.6.0",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"eslint": "^9.39.2",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}