-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 867 Bytes
/
package.json
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
{
"name": "@benborla29/mcp-server-mysql",
"version": "1.0.7",
"description": "MCP server for interacting with MySQL databases based on Node",
"license": "MIT",
"author": "Ben Borla (https://github.com/benborla)",
"type": "module",
"main": "dist/index.js",
"preferGlobal": true,
"bin": {
"mcp-server-mysql": "dist/index.js"
},
"files": [
"dist",
"README.md",
"assets"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"mysql": "^2.18.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/mysql": "^2.15.26",
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"node",
"mcp",
"ai"
]
}