Skip to content

Commit 2ef17ad

Browse files
authored
Add community.knowledge-rag — Local RAG with hybrid search + reranking (#138)
* Add community.knowledge-rag-uvx and community.knowledge-rag-npx Signed-off-by: Lyonzin <lyonzin@users.noreply.github.com> * fix: remove duplicate alias from community.knowledge-rag-npx Signed-off-by: Lyonzin <lyonzin@users.noreply.github.com> --------- Signed-off-by: Lyonzin <lyonzin@users.noreply.github.com> Co-authored-by: Lyonzin <lyonzin@users.noreply.github.com>
1 parent 14015a9 commit 2ef17ad

2 files changed

Lines changed: 120 additions & 0 deletions

File tree

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.knowledge-rag-npx",
4+
"name": "knowledge-rag (npx)",
5+
"description": "Local RAG for Claude Code. Hybrid semantic + BM25 search with cross-encoder reranking, 13 MCP tools, 20 format parsers, async background reindex, file watcher, and GPU CUDA support. Zero external servers required.",
6+
"logo": "https://avatars.githubusercontent.com/u/48651462?v=4",
7+
"schema_version": "2.1",
8+
"categories": [
9+
"ai-ml",
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"rag",
14+
"semantic-search",
15+
"bm25",
16+
"hybrid-search",
17+
"embeddings",
18+
"reranking",
19+
"knowledge-base",
20+
"local-ai",
21+
"claude-code",
22+
"retrieval-augmented-generation",
23+
"fastembed",
24+
"chromadb"
25+
],
26+
"transport": {
27+
"type": "stdio",
28+
"command": "npx",
29+
"args": [
30+
"-y",
31+
"knowledge-rag"
32+
],
33+
"metadata": {
34+
"inputs": []
35+
}
36+
},
37+
"auth": {
38+
"type": "none",
39+
"instructions": "No authentication required. All data is stored and processed locally. Optionally set KNOWLEDGE_RAG_SINGLE_INSTANCE=1 to prevent duplicate instances."
40+
},
41+
"contributor": {
42+
"name": "Lyon.",
43+
"github": "lyonzin",
44+
"url": "https://github.com/lyonzin"
45+
},
46+
"links": {
47+
"repository": "https://github.com/lyonzin/knowledge-rag",
48+
"homepage": "https://github.com/lyonzin/knowledge-rag",
49+
"documentation": "https://github.com/lyonzin/knowledge-rag/blob/master/README.md"
50+
},
51+
"platforms": [
52+
"all"
53+
],
54+
"capabilities": {
55+
"tools": true,
56+
"resources": false,
57+
"prompts": false,
58+
"read_only_mode": false
59+
}
60+
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.knowledge-rag-uvx",
4+
"name": "knowledge-rag (uvx)",
5+
"alias": "knowledge-rag",
6+
"description": "Local RAG for Claude Code. Hybrid semantic + BM25 search with cross-encoder reranking, 13 MCP tools, 20 format parsers, async background reindex, file watcher, and GPU CUDA support. Zero external servers required.",
7+
"logo": "https://avatars.githubusercontent.com/u/48651462?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"ai-ml",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"rag",
15+
"semantic-search",
16+
"bm25",
17+
"hybrid-search",
18+
"embeddings",
19+
"reranking",
20+
"knowledge-base",
21+
"local-ai",
22+
"claude-code",
23+
"retrieval-augmented-generation",
24+
"fastembed",
25+
"chromadb"
26+
],
27+
"transport": {
28+
"type": "stdio",
29+
"command": "uvx",
30+
"args": [
31+
"knowledge-rag"
32+
],
33+
"metadata": {
34+
"inputs": []
35+
}
36+
},
37+
"auth": {
38+
"type": "none",
39+
"instructions": "No authentication required. All data is stored and processed locally. Optionally set KNOWLEDGE_RAG_SINGLE_INSTANCE=1 to prevent duplicate instances."
40+
},
41+
"contributor": {
42+
"name": "Lyon.",
43+
"github": "lyonzin",
44+
"url": "https://github.com/lyonzin"
45+
},
46+
"links": {
47+
"repository": "https://github.com/lyonzin/knowledge-rag",
48+
"homepage": "https://github.com/lyonzin/knowledge-rag",
49+
"documentation": "https://github.com/lyonzin/knowledge-rag/blob/master/README.md"
50+
},
51+
"platforms": [
52+
"all"
53+
],
54+
"capabilities": {
55+
"tools": true,
56+
"resources": false,
57+
"prompts": false,
58+
"read_only_mode": false
59+
}
60+
}

0 commit comments

Comments
 (0)