-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "prem-mcp-server",
"version": "0.1.0",
"description": "A Model Context Protocol server for Prem AI - enables AI assistants to interact with Prem's ecosystem for chat completions and RAG capabilities.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/premAI-io/prem-mcp-server.git"
},
"bin": {
"prem-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"keywords": [
"mcp",
"prem",
"ai",
"claude",
"rag"
],
"author": "Prem AI",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@premai/prem-sdk": "latest",
"dotenv": "^16.4.5",
"form-data": "^4.0.2",
"uuid": "^11.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}