-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 779 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 779 Bytes
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
{
"name": "mcp-enterprise-starter",
"version": "1.0.0",
"description": "Production-grade MCP server for enterprise database access with auth, validation, and safety guardrails",
"type": "module",
"main": "dist/server.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai-agents",
"enterprise"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"pg": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/pg": "^8.18.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}