-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 788 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 788 Bytes
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
{
"name": "magisterium-mcp-server",
"version": "1.0.0",
"description": "MCP server for querying the Magisterium API for authoritative Catholic Church teaching with citations",
"type": "module",
"bin": {
"magisterium-mcp-server": "dist/mcp-magisterium.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/mcp-magisterium.js",
"test": "node test-server.js",
"web": "node dist/web-server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.0",
"cors": "^2.8.6",
"dotenv": "^17.2.0",
"express": "^5.2.1"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^22.0.0",
"typescript": "^5.8.3"
}
}