-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.2 KB
/
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
42
{
"name": "@neondatabase/mcp-server-neon",
"version": "0.1.6",
"description": "MCP server for interacting with Neon Management API and databases",
"license": "MIT",
"author": "Neon, Inc. (https://neon.tech/)",
"homepage": "https://github.com/neondatabase/mcp-server-neon/",
"bugs": "https://github.com/neondatabase/mcp-server-neon/issues",
"type": "module",
"access": "public",
"bin": {
"mcp-server-neon": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc-watch --onSuccess \"chmod 755 dist/index.js\"",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"format": "prettier --write ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.3",
"@neondatabase/api-client": "1.11.1",
"@neondatabase/serverless": "0.10.4",
"chalk": "5.3.0",
"node-fetch": "2.7.0",
"zod": "3.24.1"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/node-fetch": "^2.6.12",
"prettier": "^3.4.1",
"tsc-watch": "^6.2.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}