-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1015 Bytes
/
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
{
"name": "@ragieai/mcp-server",
"version": "0.0.4",
"description": "A Model Context Protocol (MCP) server for Ragie",
"license": "MIT",
"author": "Ragie Corp",
"homepage": "https://github.com/ragieai/ragie-mcp-server",
"repository": {
"type": "git",
"url": "git+https://github.com/ragieai/ragie-mcp-server.git"
},
"main": "build/index.js",
"type": "module",
"bin": {
"ragie-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"dev": "tsx src/index.ts",
"prepare": "npm run build"
},
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"ragie": "^1.5.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.13.5",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
},
"keywords": [
"mcp",
"model-context-protocol",
"ragie",
"knowledge-base",
"retrieval",
"ai",
"claude",
"anthropic"
]
}