-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.59 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "scripture-intelligence-server",
"version": "1.1.3",
"description": "Bible MCP server with 54 tools for WEB, KJV, and ASV Scripture search, verse lookup, passage analysis, cross-references, theology, Hebrew and Greek study, sermons, and devotionals",
"homepage": "https://mcpize.com/mcp/scripture-intelligence-server",
"repository": {
"type": "git",
"url": "git+https://github.com/Realbizdigital/scripture-intelligence-server.git"
},
"bugs": {
"url": "https://github.com/Realbizdigital/scripture-intelligence-server/issues"
},
"main": "dist/server/index.js",
"types": "dist/server/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run build:code && npm run copy:runtime-assets",
"build:code": "tsc",
"copy:runtime-assets": "node scripts/copy-runtime-assets.js",
"dev": "tsx src/server/index.ts",
"start": "node dist/server/index.js",
"start:mcpize": "node dist/server/index.js",
"test": "npm run build && node --test \"tests/**/*.test.cjs\"",
"setup:database": "npm run build:code && npm run seed:database && npm run copy:runtime-assets",
"seed:database": "node scripts/setup-database.js",
"seed:database:quiet": "node scripts/setup-database.js --quiet",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"mcp-tools",
"ai-tools",
"ai-agent-tools",
"generative-engine-optimization",
"llms-txt",
"schema-org",
"bible",
"bible-ai",
"bible-mcp",
"christian-mcp",
"bible-api",
"scripture-api",
"bible-study-ai",
"scripture",
"scripture-search",
"bible-search",
"scripture-intelligence",
"theology",
"christian-theology",
"christianity",
"christian-ai",
"bible-study",
"cross-reference",
"cross-references",
"verse-lookup",
"sermon-prep",
"sermon-outline",
"sermon-generator",
"devotional",
"devotionals",
"apologetics",
"biblical-studies",
"hebrew",
"greek",
"strongs",
"original-languages"
],
"author": "Scripture Intelligence Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"fflate": "^0.8.3",
"sqlite3": "^6.0.1"
},
"devDependencies": {
"@types/node": "^20.19.39",
"@types/sqlite3": "^3.1.11",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"eslint": "^8.57.1",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=18.0.0"
}
}