-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "mcp-sqlite",
"version": "1.0.9",
"description": "Model Context Protocol (MCP) server that provides comprehensive SQLite database interaction capabilities",
"main": "mcp-sqlite-server.js",
"bin": {
"mcp-sqlite-server": "./mcp-sqlite-server.js"
},
"type": "commonjs",
"files": [
"mcp-sqlite-server.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jparkerweb/mcp-sqlite.git"
},
"homepage": "https://github.com/jparkerweb/mcp-sqlite#readme",
"bugs": {
"url": "https://github.com/jparkerweb/mcp-sqlite/issues",
"email": "equilllabs@gmail.com"
},
"author": "Justin Parker <jparkerweb@gmail.com> (https://www.equilllabs.com)",
"license": "ISC",
"scripts": {
"test": "npx @modelcontextprotocol/inspector mcp-sqlite-server.js",
"clean": "npx rimraf node_modules package-lock.json && npm install",
"postinstall": "node -e \"console.log('\\nMCP SQLite server installed! Run with: npx mcp-sqlite-server <database-path>')\""
},
"keywords": [
"mcp",
"sqlite",
"database",
"llm",
"cursor",
"windsurf",
"ide",
"development",
"aitooling"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"sqlite3": "^5.1.7"
}
}