Trackly CLI
v0.18.1
io.github.trackly-app/trackly
AI job search for Claude, ChatGPT, Cursor. 170K+ jobs, 3,800+ companies. OAuth or stdio.
io.github.damoqiongqiu/mcp-local-rag · v0.21.0
Semantic code & doc search with keyword boost. AST code nav, auto HF mirror, local, privacy-first.
mcp-local-rag 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。
选择你的平台查看安装方式
{
"mcpServers": {
"mcp-local-rag": {
"command": "npx",
"args": [
"-y",
"@damoqiongqiu/mcp-local-rag"
]
}
}
}BASE_DIR可选Base directory for document storage (defaults to current working directory). Ignored when BASE_DIRS is set.
BASE_DIRS可选JSON array of base directories (e.g. '["/a","/b"]'). Takes precedence over BASE_DIR.
DB_PATH可选Path to LanceDB database directory (defaults to ./lancedb/)
CACHE_DIR可选Directory where Transformers.js models are cached (defaults to ./models/)
MODEL_NAME可选Embedding model name (defaults to Xenova/all-MiniLM-L6-v2)
MAX_FILE_SIZE可选Maximum file size in bytes (defaults to 104857600 / 100MB)
RAG_MAX_DISTANCE可选Maximum distance threshold for filtering search results. Results with distance greater than this value will be excluded. Lower values mean stricter filtering (e.g., 0.5 for high relevance only)
RAG_GROUPING可选Grouping mode for quality filtering. 'similar' returns only the most similar group (stops at first distance jump). 'related' includes related groups (stops at second distance jump). Unset means no grouping filter
RAG_MAX_FILES可选Maximum number of files to keep in search results. Results are filtered to include only chunks from the top N best-scoring files. For example, 1 returns only the single best-matching file's chunks. Unset means no file filtering.
CHUNK_MIN_LENGTH可选Minimum chunk length in characters (1-10000, defaults to 50). Chunks shorter than this threshold are filtered out during ingestion.
RAG_DEVICE可选Execution device for the embedder (defaults to cpu). Passed straight to ONNX Runtime; see the Transformers.js device source for the supported backend names. If the requested device fails to initialize, the server throws an error.
RAG_DTYPE可选Embedding quantization dtype for the embedder (defaults to fp32). Opt-in and pass-through; accepts any dtype the chosen model provides (fp32, fp16, q8, int8, ...). If the model has no variant for the requested dtype, the server throws an error. Changing this changes the embedding space — re-ingest existing data.
RAG_HYBRID_WEIGHT可选Keyword boost factor for hybrid search (0.0-1.0, defaults to 0.6). 0 means semantic similarity only; higher values increase the keyword-match contribution to the final score.
RAG_WATCH可选Enable automatic file watcher to detect changes and re-index modified files (true/1 to enable). Useful during active development.
HF_ENDPOINT可选Explicit HuggingFace endpoint URL to use for model downloads. When set, auto-mirror detection is skipped and this URL is used directly. Useful when you have a full-featured mirror.
HF_AUTO_MIRROR可选Enable automatic mirror detection for HuggingFace downloads (defaults to true). Set to "false" or "0" to disable and use huggingface.co directly. The mirror chain is: huggingface.co → hf-mirror.com → modelscope.cn.
HTTPS_PROXY可选HTTPS proxy URL for downloading embedding models (e.g. http://proxy:8080). Required only if behind a corporate proxy.
HTTP_PROXY可选HTTP proxy URL for downloading embedding models. Fallback if HTTPS_PROXY is not set.
v0.18.1
io.github.trackly-app/trackly
AI job search for Claude, ChatGPT, Cursor. 170K+ jobs, 3,800+ companies. OAuth or stdio.
v0.3.0
io.github.theoddden/stamp
NTP time plus clock-drift history: stable vs. accelerating offsets.
v0.1.13
io.github.Servosity/ninjaone-mcp
Every NinjaOne report, plus a local store that answers fleet-wide questions no single API call can
v0.81.0
io.github.ArtJack/verdict
Read-only MCP server over Verdict QA state: verdicts, findings, flaky quarantine, history.
v0.3.3
io.github.toki0413/saturday-materials
Materials computing tools for AI agents: structures, engines, phonons, EOS, NEB, sampling, lineage.
v2.1.0
com.notepom/notepom
Persistent workspace and visual memory for humans and autonomous agents.
{
"id": "io.github.damoqiongqiu/mcp-local-rag",
"type": "mcp-server",
"version": "0.21.0",
"displayName": "mcp-local-rag",
"description": "Semantic code & doc search with keyword boost. AST code nav, auto HF mirror, local, privacy-first.",
"repository": {
"url": "https://github.com/damoqiongqiu/mcp-local-rag",
"source": "github"
},
"distribution": {
"packages": [
{
"registryType": "npm",
"identifier": "@damoqiongqiu/mcp-local-rag",
"version": "0.21.0",
"transport": "stdio",
"environmentVariables": [
{
"name": "BASE_DIR",
"description": "Base directory for document storage (defaults to current working directory). Ignored when BASE_DIRS is set."
},
{
"name": "BASE_DIRS",
"description": "JSON array of base directories (e.g. '[\"/a\",\"/b\"]'). Takes precedence over BASE_DIR."
},
{
"name": "DB_PATH",
"description": "Path to LanceDB database directory (defaults to ./lancedb/)"
},
{
"name": "CACHE_DIR",
"description": "Directory where Transformers.js models are cached (defaults to ./models/)"
},
{
"name": "MODEL_NAME",
"description": "Embedding model name (defaults to Xenova/all-MiniLM-L6-v2)"
},
{
"name": "MAX_FILE_SIZE",
"description": "Maximum file size in bytes (defaults to 104857600 / 100MB)"
},
{
"name": "RAG_MAX_DISTANCE",
"description": "Maximum distance threshold for filtering search results. Results with distance greater than this value will be excluded. Lower values mean stricter filtering (e.g., 0.5 for high relevance only)"
},
{
"name": "RAG_GROUPING",
"description": "Grouping mode for quality filtering. 'similar' returns only the most similar group (stops at first distance jump). 'related' includes related groups (stops at second distance jump). Unset means no grouping filter"
},
{
"name": "RAG_MAX_FILES",
"description": "Maximum number of files to keep in search results. Results are filtered to include only chunks from the top N best-scoring files. For example, 1 returns only the single best-matching file's chunks. Unset means no file filtering."
},
{
"name": "CHUNK_MIN_LENGTH",
"description": "Minimum chunk length in characters (1-10000, defaults to 50). Chunks shorter than this threshold are filtered out during ingestion."
},
{
"name": "RAG_DEVICE",
"description": "Execution device for the embedder (defaults to cpu). Passed straight to ONNX Runtime; see the Transformers.js device source for the supported backend names. If the requested device fails to initialize, the server throws an error."
},
{
"name": "RAG_DTYPE",
"description": "Embedding quantization dtype for the embedder (defaults to fp32). Opt-in and pass-through; accepts any dtype the chosen model provides (fp32, fp16, q8, int8, ...). If the model has no variant for the requested dtype, the server throws an error. Changing this changes the embedding space — re-ingest existing data."
},
{
"name": "RAG_HYBRID_WEIGHT",
"description": "Keyword boost factor for hybrid search (0.0-1.0, defaults to 0.6). 0 means semantic similarity only; higher values increase the keyword-match contribution to the final score."
},
{
"name": "RAG_WATCH",
"description": "Enable automatic file watcher to detect changes and re-index modified files (true/1 to enable). Useful during active development."
},
{
"name": "HF_ENDPOINT",
"description": "Explicit HuggingFace endpoint URL to use for model downloads. When set, auto-mirror detection is skipped and this URL is used directly. Useful when you have a full-featured mirror."
},
{
"name": "HF_AUTO_MIRROR",
"description": "Enable automatic mirror detection for HuggingFace downloads (defaults to true). Set to \"false\" or \"0\" to disable and use huggingface.co directly. The mirror chain is: huggingface.co → hf-mirror.com → modelscope.cn."
},
{
"name": "HTTPS_PROXY",
"description": "HTTPS proxy URL for downloading embedding models (e.g. http://proxy:8080). Required only if behind a corporate proxy."
},
{
"name": "HTTP_PROXY",
"description": "HTTP proxy URL for downloading embedding models. Fallback if HTTPS_PROXY is not set."
}
]
}
],
"remotes": []
},
"dependencies": [],
"installTargets": [
"claude-code",
"claude-desktop",
"cursor",
"vscode",
"trae",
"cherry-studio",
"lingma",
"windsurf",
"cline",
"workbuddy"
],
"keywords": [],
"provenance": {
"origin": "official-mcp-registry",
"originalId": "io.github.damoqiongqiu/mcp-local-rag",
"originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.damoqiongqiu%2Fmcp-local-rag/versions/latest",
"isOfficial": true,
"status": "active"
}
}