mcp-rag-web
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-rag-webTìm kiếm trong các PDF đã upload về quy trình tuyển dụng"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP RAG Server cho PDF
MCP server (HTTP) cho phép Claude tìm kiếm ngữ nghĩa (semantic search) trên các file PDF của bạn thông qua RAG (Retrieval-Augmented Generation).
Transport: HTTP (streamable-http) — kết nối qua Claude Connectors, dùng được trên Claude Desktop, claude.ai, và mobile
Vector DB: Postgres + pgvector (index HNSW)
Embedding: OpenAI
text-embedding-3-smallPDF: chỉ hỗ trợ PDF dạng text (không OCR)
Xác thực: không có (xem lưu ý bảo mật trong
DEPLOY.md)
Cấu trúc project
mcp-rag-pdf/
├── documents/ # Bỏ file PDF cần index vào đây (dùng cho ingest.py CLI)
├── config.py # Cấu hình chung
├── pdf_utils.py # Đọc PDF + chia chunk
├── vector_store.py # Wrapper Postgres/pgvector + OpenAI embedding
├── ingest.py # Script CLI - nạp/refresh dữ liệu từ documents/
├── server.py # MCP server (HTTP) - Claude gọi search_docs qua đây
├── Dockerfile # Build MCP server
├── requirements.txt
├── webapp/ # Web app upload PDF nhiều người dùng, phân quyền
│ ├── app.py # FastAPI: login, dashboard, upload, admin
│ ├── db.py # users/departments/documents/audit_log
│ ├── auth.py # Session + kiểm tra phân quyền
│ ├── ingest_core.py # Logic ingest dùng chung (gọi từ web upload)
│ ├── init_admin.py # Script tạo tài khoản admin đầu tiên
│ ├── templates/ # Giao diện HTML (login, dashboard, admin)
│ ├── Dockerfile # Build web app (xem lưu ý build context trong DEPLOY.md)
│ └── requirements.txt
└── DEPLOY.md # Hướng dẫn deploy lên cloud (Railway + Postgres)Có 2 cách nạp tài liệu: ingest.py (CLI, đơn giản cho dev/nạp hàng loạt
ban đầu) và web app (webapp/, dành cho nhiều người dùng cùng
upload/quản lý theo phân quyền — xem chi tiết trong DEPLOY.md).
Related MCP server: qdrant-mcp
1. Cài đặt (chạy dev trên máy)
cd mcp-rag-pdf
python3 -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txtCần có sẵn 1 Postgres có extension pgvector — dễ nhất là chạy local qua
Docker:
docker run -d --name pg-rag -e POSTGRES_PASSWORD=postgres \
-p 5432:5432 pgvector/pgvector:pg162. Cấu hình biến môi trường
Tạo file .env (copy từ .env.example):
OPENAI_API_KEY=sk-...
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres3. Ingest PDF
Bỏ file .pdf vào documents/, sau đó chạy:
python ingest.pyLần chạy đầu tự tạo extension vector, bảng, và index HNSW nếu chưa có.
Các lệnh hữu ích khác:
python ingest.py --reset # xoá index cũ, ingest lại từ đầu
python ingest.py --force # ingest lại tất cả kể cả file không đổi
python ingest.py --dir /path/khac # ingest từ thư mục khácChạy lại python ingest.py bất cứ khi nào thêm/sửa file PDF — script tự
động bỏ qua file không đổi (dựa trên hash nội dung), chỉ re-index file mới
hoặc đã thay đổi.
Lưu ý chi phí: mỗi lần ingest gọi OpenAI Embedding API. Với vài trăm
file PDF, chi phí text-embedding-3-small thường dưới $1.
4. Chạy thử server local
python server.pyMặc định lắng nghe tại http://0.0.0.0:8000/mcp, có endpoint kiểm tra
sống tại http://localhost:8000/health.
Đổi port bằng biến môi trường: PORT=8080 python server.py
Test bằng MCP Inspector:
npx @modelcontextprotocol/inspector http://localhost:8000/mcp5. Chạy thử web app quản lý upload (local)
Web app dùng chung Postgres ở trên, chạy ở port khác:
cd webapp
pip install -r requirements.txt
export SESSION_SECRET=$(python -c "import secrets; print(secrets.token_hex(32))")
python init_admin.py --email admin@company.com --password "matkhaumanh123" --name "Admin"
uvicorn app:app --reload --port 8001Mở http://localhost:8001/login, đăng nhập bằng tài khoản admin vừa tạo.
6. Deploy lên cloud + kết nối vào Claude
Xem hướng dẫn chi tiết trong DEPLOY.md — deploy MCP
server + web app + Postgres/pgvector lên Railway, lấy public URL, rồi add
qua Claude → Settings → Connectors → Add custom connector.
Quy trình cập nhật dữ liệu
Local: chạy lại python ingest.py sau khi thêm/sửa PDF trong documents/.
Cloud (Railway): ingest bằng railway run python ingest.py từ máy bạn —
không cần rebuild image (chi tiết trong DEPLOY.md).
Giới hạn hiện tại
Chỉ đọc PDF dạng text; PDF scan (ảnh) sẽ bị bỏ qua với cảnh báo.
Xoá file khỏi
documents/không tự động xoá khỏi index — cần chạypython ingest.py --resetđể làm sạch hoàn toàn.Không có xác thực — chỉ nên deploy cho môi trường nội bộ tin cậy, hoặc đặt sau 1 lớp bảo vệ khác (VPN, IP allowlist...).
Đổi model embedding (số chiều khác 1536) cần cập nhật
EMBEDDING_DIMtrongconfig.pyvà tạo lại bảng.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceA complete MCP server for Retrieval-Augmented Generation with file management and vector memory for agents. Supports multiple document formats (PDF, DOCX, TXT, MD, CSV, JSON) with semantic search using Hugging Face embeddings and ChromaDB for efficient vector storage.11131MIT
- Alicense-qualityDmaintenanceMCP server for document ingestion and semantic search on Qdrant. Enables ingesting local documents, generating embeddings with OpenAI, and performing vector search with metadata filters.Apache 2.0
- AlicenseAqualityDmaintenanceLocal-first RAG indexing and semantic search MCP server. Enables document retrieval and context-aware queries using local embedding models.39MIT
- FlicenseAqualityDmaintenanceMCP server that enables semantic search over local PDF collections using local RAG, with automatic indexing of new documents.5
Related MCP Connectors
Remote ChromaDB vector database MCP server with streamable HTTP transport
MCP server for managing Prisma Postgres.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nguyenkhanhtoan-ai/mcp-rag-web'
If you have feedback or need assistance with the MCP directory API, please join our Discord server