ZAP RAG Server
БесплатноНе проверенRead-only MCP server that exposes ZAP's RAG search modes (plain, hybrid, hybrid_rerank) for agents to perform semantic code retrieval.
Описание
Read-only MCP server that exposes ZAP's RAG search modes (plain, hybrid, hybrid_rerank) for agents to perform semantic code retrieval.
README
Standalone Model Context Protocol (MCP) server that exposes only ZAP’s RAG search modes for other agents (Kilo, Cursor, Claude Desktop, Continue, etc.).
Works with the SQLite index built by the ZAP IntelliJ plugin (rag.db).
| Tool | Description |
|---|---|
zap_rag_status |
DB health, chunk/embedding counts, models, modes |
zap_rag_search |
Semantic search: PLAIN / HYBRID / HYBRID_RERANK |
Read-only. No write tools, no agent loop — retrieval only.
Modes
| Mode | Behavior | Needs |
|---|---|---|
| PLAIN | Cosine over code-chunk embeddings | Index + embeddings |
| HYBRID | Weighted class summaries + code | Class summaries at index time |
| HYBRID_RERANK | Hybrid pool → LLM rerank | Chat API key |
Install
cd zap-rag-mcp
python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install -r requirements.txt
Environment
| Variable | Required | Description |
|---|---|---|
ZAP_DB_PATH |
Yes | Absolute path to ZAP rag.db |
ZAP_EMBEDDING_BASE_URL |
Yes* | OpenAI-compatible embeddings base URL |
ZAP_EMBEDDING_API_KEY |
Yes* | API key (ollama ok for local) |
ZAP_EMBEDDING_MODEL |
Yes* | Must match model used when indexing |
ZAP_CHAT_BASE_URL |
Rerank | Chat completions base |
ZAP_CHAT_API_KEY |
Rerank | Chat API key |
ZAP_CHAT_MODEL |
Rerank | Chat model name |
ZAP_RETRIEVAL_MODE |
No | Default mode (PLAIN) |
ZAP_TOP_K |
No | Default top_k (10) |
ZAP_PROJECT_PATH |
No | Scope to this project path |
ZAP_SEARCH_ENTIRE_DATABASE |
No | true = no project filter |
* Falls back to OPENAI_BASE_URL / OPENAI_API_KEY if set.
Find the DB path in IntelliJ: Settings → ZAP → Database path.
Run
$env:ZAP_DB_PATH = "C:\path\to\rag.db"
$env:ZAP_EMBEDDING_BASE_URL = "http://127.0.0.1:11434/v1"
$env:ZAP_EMBEDDING_API_KEY = "ollama"
$env:ZAP_EMBEDDING_MODEL = "nomic-embed-text"
python server.py
MCP over stdio (no HTTP port).
MCP host config (Kilo / Cursor / Claude Desktop)
See mcp.example.json. Example:
{
"mcpServers": {
"zap-rag": {
"command": "C:\\path\\to\\zap-rag-mcp\\.venv\\Scripts\\python.exe",
"args": ["C:\\path\\to\\zap-rag-mcp\\server.py"],
"env": {
"ZAP_DB_PATH": "C:\\path\\to\\rag.db",
"ZAP_EMBEDDING_BASE_URL": "http://127.0.0.1:11434/v1",
"ZAP_EMBEDDING_API_KEY": "ollama",
"ZAP_EMBEDDING_MODEL": "nomic-embed-text"
}
}
}
}
Agent skill
See .grok/skills/searching-zap-rag/SKILL.md (Anthropic Agent Skills: third-person description, progressive references/) for how coding agents should call the tools.
Related
- IntelliJ plugin (indexing + chat UI): intellij-code-rag-plugin
License
Apache-2.0
Установка ZAP RAG Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/RaviTeja-438/zap-rag-mcpFAQ
ZAP RAG Server MCP бесплатный?
Да, ZAP RAG Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для ZAP RAG Server?
Нет, ZAP RAG Server работает без API-ключей и переменных окружения.
ZAP RAG Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить ZAP RAG Server в Claude Desktop, Claude Code или Cursor?
Открой ZAP RAG Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare ZAP RAG Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
