forked from bilims/mcp-sqlserver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.06 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.06 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
{
"name": "@falldownthesystem/mcp-sqlserver",
"version": "2.3.0",
"description": "A read-only Model Context Protocol (MCP) server for Microsoft SQL Server that enables AI agents to safely explore and query SQL Server databases",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-sqlserver": "dist/index.js",
"sqlq": "dist/cli-app.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"INSTALL.md",
"QUICK-START.md",
"examples"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"dev": "tsx src/index.ts",
"cli-dev": "tsx src/cli-app.ts",
"start": "node dist/index.js",
"setup": "npm run build && echo 'Setup complete! See README.md for configuration instructions.'",
"test-connection": "node dist/index.js --help || echo 'Please set environment variables. See README.md for details.'",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"keywords": [
"mcp",
"model-context-protocol",
"sql-server",
"mssql",
"database",
"ai",
"assistant",
"claude",
"readonly",
"schema-discovery",
"data-exploration"
],
"author": "Bilims",
"license": "MIT",
"homepage": "https://github.com/FallDownTheSystem/mcp-sqlserver",
"repository": {
"type": "git",
"url": "https://github.com/FallDownTheSystem/mcp-sqlserver.git"
},
"bugs": {
"url": "https://github.com/FallDownTheSystem/mcp-sqlserver/issues"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.0",
"dotenv": "^17.3.1",
"mssql": "^11.0.1",
"picocolors": "^1.1.0",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/mssql": "^9.1.5",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"tsx": "^4.16.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18"
}
}