forked from graphlit/graphlit-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.26 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.26 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
{
"name": "graphlit-mcp-server",
"version": "1.0.1",
"description": "Graphlit MCP Server",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/graphlit/graphlit-mcp-server.git"
},
"contributors": [
"Kirk Marple (https://github.com/kirk-marple)"
],
"bin": {
"graphlit-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node ./src/index.ts",
"build": "tsc -p tsconfig.json",
"watch": "tsc --watch",
"check": "tsc --noEmit --incremental",
"format": "prettier --write .",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js"
},
"keywords": [
"Graphlit",
"API",
"LLM",
"AI",
"RAG",
"OpenAI",
"PDF",
"parsing",
"preprocessing",
"memory",
"agents",
"agent tools",
"retrieval",
"web scraping",
"knowledge graph",
"MCP"
],
"author": "Unstruk Data Inc.",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.4",
"graphlit-client": "^1.0.20250830002"
},
"devDependencies": {
"@types/mime-types": "^3.0.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
}
}