easy-sqlite-mcp 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -12,11 +12,11 @@ This project uses Node.js, TypeScript, the official MCP SDK, and `better-sqlite3
|
|
|
12
12
|
- Schema discovery tools for tables, views, indexes, and triggers
|
|
13
13
|
- Lightweight, synchronous SQLite access powered by `better-sqlite3`
|
|
14
14
|
|
|
15
|
-
`better-sqlite3` in this project requires Node.js
|
|
15
|
+
`better-sqlite3` in this project requires Node.js 22 or newer. Use Node.js 22 LTS for the most reliable prebuilt-binary availability on Windows.
|
|
16
16
|
|
|
17
17
|
## Requirements
|
|
18
18
|
|
|
19
|
-
- Node.js
|
|
19
|
+
- Node.js 22 or newer (Node.js 22 LTS recommended)
|
|
20
20
|
- npm
|
|
21
21
|
- A reachable SQLite database file
|
|
22
22
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easy-sqlite-mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "A high-performance Model Context Protocol (MCP) server for SQLite database interaction.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -39,17 +39,17 @@
|
|
|
39
39
|
"clean": "rimraf dist"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
|
-
"node": ">=
|
|
42
|
+
"node": ">=22"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
46
|
-
"better-sqlite3": "^
|
|
47
|
-
"zod": "^4.4
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
46
|
+
"better-sqlite3": "^13.0.3",
|
|
47
|
+
"zod": "^4.5.4"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/better-sqlite3": "^
|
|
51
|
-
"@types/node": "^26.
|
|
52
|
-
"tsx": "^4.23.
|
|
50
|
+
"@types/better-sqlite3": "^9.6.0",
|
|
51
|
+
"@types/node": "^26.5.0",
|
|
52
|
+
"tsx": "^4.23.13",
|
|
53
53
|
"typescript": "^7.0.2"
|
|
54
54
|
}
|
|
55
55
|
}
|