-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"author": {
"name": "Sam McLeod",
"url": "https://smcleod.net"
},
"bin": {
"mcp-llm": "./build/index.js"
},
"bugs": {
"url": "https://github.com/sammcj/mcp-llm/issues"
},
"dependencies": {
"@llamaindex/community": "0.0.88",
"@llamaindex/ollama": "0.0.46",
"@llamaindex/openai": "0.1.58",
"@modelcontextprotocol/sdk": "1.6.1",
"llamaindex": "0.9.7"
},
"description": "MCP server for interacting with LLMs using LlamaIndexTS",
"devDependencies": {
"@types/node": "22.13.9",
"typescript": "^5.8.2"
},
"engines": {
"node": ">=20"
},
"files": [
"build",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/sammcj/mcp-llm#readme",
"keywords": [
"mcp",
"documentation",
"llm",
"ai",
"package",
"docs",
"llamaindex",
"sammcj",
"smcleod"
],
"license": "MIT",
"main": "build/index.js",
"name": "mcp-llm",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammcj/mcp-llm.git"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"bump": "npx -y standard-version --skip.tag && git add . ; git commit -m 'chore: bump version' ; git push",
"dev": "tsc && node build/index.js",
"example": "node examples/use-mcp-server.js",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"prepare": "npm run build",
"start": "node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc --watch"
},
"type": "module",
"version": "1.0.6"
}