Faq Rag
БесплатноНе проверенEnables answering natural-language questions from FAQ documents using vector search and LLM generation via an MCP tool.
Описание
Enables answering natural-language questions from FAQ documents using vector search and LLM generation via an MCP tool.
README
A RAG prototype that answers natural-language questions from FAQ documents using vector search and LLM generation, exposed as an MCP tool.
What We Built
A three-stage RAG pipeline:
- Ingest — FAQ markdown files are chunked (~200 chars), embedded with VoyageAI, and stored in MongoDB
- Retrieve — User questions are embedded and matched against stored chunks using MongoDB
$vectorSearch(cosine similarity) - Generate — Top matching chunks are passed as context to an LLM, which generates a cited answer
The whole thing is wrapped as an MCP tool (ask_faq) so any MCP-compatible client can call it directly.
Architecture
| Component | Choice | Why |
|---|---|---|
| Embeddings | VoyageAI voyage-3-lite (512d) |
Purpose-built for retrieval; outperforms OpenAI ada-002 on search benchmarks |
| Vector Store | MongoDB $vectorSearch |
Persistent, scalable, production-realistic — vs in-memory numpy which loses data on restart |
| LLM | OpenAI gpt-4o-mini |
Cost-efficient, fast, plenty capable for FAQ Q&A |
| MCP | stdio transport | Standard for local MCP tools |
How It Works
Question → VoyageAI embed → MongoDB $vectorSearch → Top-K chunks → OpenAI generate → Cited answer
- Chunking: Fixed ~200 character splits. Simple and predictable for a small corpus.
- Retrieval: Cosine similarity via MongoDB vector search index (HNSW). Returns top 4 chunks by default.
- Generation: System prompt enforces grounded answers — no hallucination, must cite source filenames, infers intent (e.g. "locked out" → password reset).
- Lazy client init: API clients connect on first query, not at server startup — so the MCP server registers tools cleanly before any API calls.
How to Run
1. Configure environment
cp .env.example .env
Set VOYAGE_API_KEY, OPENAI_API_KEY, and MONGODB_URI. That’s all that’s required.
2. Ingest the FAQ corpus
uv run ingest.py
3. Test via CLI
uv run rag_core.py
4. Run as MCP tool in Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"faq-rag": {
"type": "stdio",
"command": "uv",
"args": ["run", "python", "${workspaceFolder}/mcp_server.py"],
"envFile": "${workspaceFolder}/.env"
}
}
}
Example Questions
These show the system understands intent, not just keywords:
| Question | What it tests |
|---|---|
| "How do I reset my password?" | Direct keyword match (faq_auth.md) |
| "I'm locked out of my account" | Semantic inference — no "password" or "reset" in query |
| "Can I take 3 weeks off in a row?" | Retrieves the 2-week approval rule from PTO policy |
| "When do my shares kick in?" | Maps "shares" → equity vesting schedule |
| "I want to use one login for everything" | Maps to SSO without mentioning it |
| "What do new employees need to know?" | Cross-document retrieval from multiple FAQ files |
Deviations from Starter Skeleton
The starter used OpenAI embeddings + in-memory numpy for cosine similarity. We replaced both:
- VoyageAI instead of OpenAI embeddings — Voyage models are purpose-built for retrieval and rank higher on search benchmarks (MTEB). Using a separate embedding provider also decouples retrieval quality from the LLM choice.
- MongoDB instead of numpy — A real vector database with persistence, indexing (HNSW), and
$vectorSearchaggregation. Data survives restarts, and the same approach scales to millions of documents without code changes. - Lazy client initialization — API clients connect on first tool call, not at import. This lets the MCP server start and register tools cleanly.
- Kept everything else simple — no LangChain, no caching layers, no retry logic. Clean Python with direct API calls.
Files
ingest.py # Build the index: read faqs/ → chunk → embed → store in MongoDB → ensure vector index
rag_core.py # Query path only: embed question → vector search → generate answer (no ingestion)
mcp_server.py # MCP server (exposes ask_faq, calls rag_core)
faqs/ # FAQ markdown corpus
Установка Faq Rag
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/chowgi/glean-rag-mcpFAQ
Faq Rag MCP бесплатный?
Да, Faq Rag MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Faq Rag?
Нет, Faq Rag работает без API-ключей и переменных окружения.
Faq Rag — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Faq Rag в Claude Desktop, Claude Code или Cursor?
Открой Faq Rag на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Faq Rag with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
