mcp-rag-vector
Verified Safeby AppliNH
Overview
An MCP server designed to serve as a RAG pipeline, enabling LLMs to write and read from a vector database.
Installation
docker compose up -d --buildEnvironment Variables
- SYSTEM_PROMPT
- PYTHONUNBUFFERED
- HTTP_PORT
- LOG_LEVEL
Security Notes
The system binds HTTP servers to `0.0.0.0`, which is a common practice within Docker containers but requires careful network configuration in production environments. The 'greet' tool processes user input by simple string concatenation, which is safe. No 'eval', direct shell execution of unsanitized user input, or obvious hardcoded secrets were identified in the provided code snippet.
Similar Servers
haiku.rag
Opinionated agentic RAG powered by LanceDB, Pydantic AI, and Docling to provide hybrid search, intelligent QA, and multi-agent research over user-provided documents, accessible via CLI, Python API, Web App, TUI, or as an MCP server for AI assistants.
Context-Engine
Self-improving code search and context engine for IDEs and AI agents, providing hybrid semantic/lexical search, symbol graph navigation, and persistent memory.
local_faiss_mcp
Provides a local FAISS-based vector database as an MCP server for Retrieval-Augmented Generation (RAG) applications, enabling document ingestion, semantic search, and prompt generation.
vector-mcp
Provides a standardized API for AI agents to manage and interact with various vector database technologies for Retrieval Augmented Generation (RAG).