-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.14 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.14 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
{
"name": "@kevinwatt/mysql-mcp",
"version": "0.1.3",
"description": "MCP server implementation for MySQL database access",
"license": "MIT",
"author": "Dewei Yen (https://github.com/kevinwatt)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"preferGlobal": true,
"bin": {
"mysql-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.1",
"mysql": "^2.18.1"
},
"devDependencies": {
"@types/mysql": "^2.15.26",
"@types/node": "^20.10.0",
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinwatt/mysql-mcp.git"
},
"bugs": {
"url": "https://github.com/kevinwatt/mysql-mcp/issues"
},
"homepage": "https://github.com/kevinwatt/mysql-mcp#readme",
"keywords": [
"mcp",
"mysql",
"database",
"dive",
"llm",
"ai"
]
}