forked from johnnyoshika/mcp-server-sqlite-npx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@pollinations/mcp-server-sqlite",
"version": "0.6.6",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-server-sqlite": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js test-db/orders.sqlite",
"dev": "node --loader ts-node/esm src/index.ts test-db/orders.sqlite",
"dev:watch": "nodemon --exec \"node --loader ts-node/esm\" src/index.ts test-db/orders.sqlite",
"start:prod": "NODE_ENV=production MCP_BASE_URL=https://sqlite-mcp.pollinations.ai node dist/index.js test-db/orders.sqlite",
"start:sse": "MCP_ENABLE_SSE=true node dist/index.js test-db/orders.sqlite",
"start:prod:sse": "NODE_ENV=production MCP_BASE_URL=https://sqlite-mcp.pollinations.ai MCP_ENABLE_SSE=true node dist/index.js test-db/orders.sqlite",
"type-check": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"sqlite",
"model-context-protocol",
"ai",
"llm",
"claude",
"database"
],
"author": "Pollinations",
"license": "MIT",
"description": "A Node.js implementation of the Model Context Protocol SQLite server with a simplified API",
"repository": {
"type": "git",
"url": "git+https://github.com/pollinations/mcp-server-sqlite-npx.git"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/node": "^22.10.2",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.0",
"sqlite3": "^5.1.7",
"zod-to-json-schema": "^3.24.1"
}
}