From 79eaa7d64499530aca905bc50009862203daa804 Mon Sep 17 00:00:00 2001 From: Lyonzin Date: Wed, 24 Jun 2026 11:11:45 -0300 Subject: [PATCH 1/2] Add community.knowledge-rag-uvx and community.knowledge-rag-npx Signed-off-by: Lyonzin --- servers/community.knowledge-rag-npx.json | 61 ++++++++++++++++++++++++ servers/community.knowledge-rag-uvx.json | 60 +++++++++++++++++++++++ 2 files changed, 121 insertions(+) create mode 100644 servers/community.knowledge-rag-npx.json create mode 100644 servers/community.knowledge-rag-uvx.json diff --git a/servers/community.knowledge-rag-npx.json b/servers/community.knowledge-rag-npx.json new file mode 100644 index 0000000..f254134 --- /dev/null +++ b/servers/community.knowledge-rag-npx.json @@ -0,0 +1,61 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.knowledge-rag-npx", + "name": "knowledge-rag (npx)", + "alias": "knowledge-rag", + "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.", + "logo": "https://avatars.githubusercontent.com/u/48651462?v=4", + "schema_version": "2.1", + "categories": [ + "ai-ml", + "developer-tools" + ], + "tags": [ + "rag", + "semantic-search", + "bm25", + "hybrid-search", + "embeddings", + "reranking", + "knowledge-base", + "local-ai", + "claude-code", + "retrieval-augmented-generation", + "fastembed", + "chromadb" + ], + "transport": { + "type": "stdio", + "command": "npx", + "args": [ + "-y", + "knowledge-rag" + ], + "metadata": { + "inputs": [] + } + }, + "auth": { + "type": "none", + "instructions": "No authentication required. All data is stored and processed locally. Optionally set KNOWLEDGE_RAG_SINGLE_INSTANCE=1 to prevent duplicate instances." + }, + "contributor": { + "name": "Lyon.", + "github": "lyonzin", + "url": "https://github.com/lyonzin" + }, + "links": { + "repository": "https://github.com/lyonzin/knowledge-rag", + "homepage": "https://github.com/lyonzin/knowledge-rag", + "documentation": "https://github.com/lyonzin/knowledge-rag/blob/master/README.md" + }, + "platforms": [ + "all" + ], + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} diff --git a/servers/community.knowledge-rag-uvx.json b/servers/community.knowledge-rag-uvx.json new file mode 100644 index 0000000..cd81064 --- /dev/null +++ b/servers/community.knowledge-rag-uvx.json @@ -0,0 +1,60 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "community.knowledge-rag-uvx", + "name": "knowledge-rag (uvx)", + "alias": "knowledge-rag", + "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.", + "logo": "https://avatars.githubusercontent.com/u/48651462?v=4", + "schema_version": "2.1", + "categories": [ + "ai-ml", + "developer-tools" + ], + "tags": [ + "rag", + "semantic-search", + "bm25", + "hybrid-search", + "embeddings", + "reranking", + "knowledge-base", + "local-ai", + "claude-code", + "retrieval-augmented-generation", + "fastembed", + "chromadb" + ], + "transport": { + "type": "stdio", + "command": "uvx", + "args": [ + "knowledge-rag" + ], + "metadata": { + "inputs": [] + } + }, + "auth": { + "type": "none", + "instructions": "No authentication required. All data is stored and processed locally. Optionally set KNOWLEDGE_RAG_SINGLE_INSTANCE=1 to prevent duplicate instances." + }, + "contributor": { + "name": "Lyon.", + "github": "lyonzin", + "url": "https://github.com/lyonzin" + }, + "links": { + "repository": "https://github.com/lyonzin/knowledge-rag", + "homepage": "https://github.com/lyonzin/knowledge-rag", + "documentation": "https://github.com/lyonzin/knowledge-rag/blob/master/README.md" + }, + "platforms": [ + "all" + ], + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 4039972f31684665a4c5f648e0e59f9923b64614 Mon Sep 17 00:00:00 2001 From: Lyonzin Date: Wed, 24 Jun 2026 12:29:15 -0300 Subject: [PATCH 2/2] fix: remove duplicate alias from community.knowledge-rag-npx Signed-off-by: Lyonzin --- servers/community.knowledge-rag-npx.json | 1 - 1 file changed, 1 deletion(-) diff --git a/servers/community.knowledge-rag-npx.json b/servers/community.knowledge-rag-npx.json index f254134..2f6341e 100644 --- a/servers/community.knowledge-rag-npx.json +++ b/servers/community.knowledge-rag-npx.json @@ -2,7 +2,6 @@ "$schema": "../schemas/server-definition.schema.json", "id": "community.knowledge-rag-npx", "name": "knowledge-rag (npx)", - "alias": "knowledge-rag", "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.", "logo": "https://avatars.githubusercontent.com/u/48651462?v=4", "schema_version": "2.1",