@g99/lightrag-mcp-server 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -17
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -19,28 +19,24 @@ LightRAG MCP Server provides complete integration with LightRAG's API, offering
|
|
|
19
19
|
|
|
20
20
|
## Installation
|
|
21
21
|
|
|
22
|
-
###
|
|
23
|
-
|
|
24
|
-
```bash
|
|
25
|
-
uvx lightrag-mcp-server
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
### Using npx (Node.js)
|
|
22
|
+
### Quick Start (Recommended)
|
|
29
23
|
|
|
30
24
|
```bash
|
|
31
25
|
npx @g99/lightrag-mcp-server
|
|
32
26
|
```
|
|
33
27
|
|
|
34
|
-
###
|
|
28
|
+
### Global Installation
|
|
35
29
|
|
|
36
30
|
```bash
|
|
37
|
-
|
|
31
|
+
npm install -g @g99/lightrag-mcp-server
|
|
38
32
|
```
|
|
39
33
|
|
|
40
|
-
###
|
|
34
|
+
### From Source
|
|
41
35
|
|
|
42
36
|
```bash
|
|
43
|
-
|
|
37
|
+
git clone https://github.com/lalitsuryan/lightragmcp.git
|
|
38
|
+
cd lightragmcp
|
|
39
|
+
npm install
|
|
44
40
|
```
|
|
45
41
|
|
|
46
42
|
## Prerequisites
|
|
@@ -95,8 +91,8 @@ Add to your `claude_desktop_config.json`:
|
|
|
95
91
|
{
|
|
96
92
|
"mcpServers": {
|
|
97
93
|
"lightrag": {
|
|
98
|
-
"command": "
|
|
99
|
-
"args": ["lightrag-mcp-server"],
|
|
94
|
+
"command": "npx",
|
|
95
|
+
"args": ["@g99/lightrag-mcp-server"],
|
|
100
96
|
"env": {
|
|
101
97
|
"LIGHTRAG_SERVER_URL": "http://localhost:9621",
|
|
102
98
|
"LIGHTRAG_API_KEY": "your_api_key_here"
|
|
@@ -114,8 +110,8 @@ Add to your MCP settings:
|
|
|
114
110
|
{
|
|
115
111
|
"mcpServers": {
|
|
116
112
|
"lightrag": {
|
|
117
|
-
"command": "
|
|
118
|
-
"args": ["lightrag-mcp-server"],
|
|
113
|
+
"command": "npx",
|
|
114
|
+
"args": ["@g99/lightrag-mcp-server"],
|
|
119
115
|
"env": {
|
|
120
116
|
"LIGHTRAG_SERVER_URL": "http://localhost:9621",
|
|
121
117
|
"LIGHTRAG_API_KEY": "your_api_key_here"
|
|
@@ -588,8 +584,8 @@ LightRAG supports multiple query modes for different use cases:
|
|
|
588
584
|
|
|
589
585
|
```bash
|
|
590
586
|
# Clone the repository
|
|
591
|
-
git clone https://github.com/
|
|
592
|
-
cd
|
|
587
|
+
git clone https://github.com/lalitsuryan/lightragmcp.git
|
|
588
|
+
cd lightragmcp
|
|
593
589
|
|
|
594
590
|
# For Python development
|
|
595
591
|
pip install -e ".[dev]"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@g99/lightrag-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Model Context Protocol (MCP) server for LightRAG - Complete RAG and Knowledge Graph integration with 30+ tools",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -42,4 +42,4 @@
|
|
|
42
42
|
"engines": {
|
|
43
43
|
"node": ">=18.0.0"
|
|
44
44
|
}
|
|
45
|
-
}
|
|
45
|
+
}
|