RAGFlow MCP
Used to download and install the uv package installer, which is recommended for dependency management.
Enables cloning repositories from GitHub to access code for the RAGFlow MCP server.
Provides the runtime environment for the RAGFlow MCP server, requiring Python 3.12 specifically.
Supports configuration management through pyproject.toml for dependency resolution and installation.
Click on "Deploy 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., "@RAGFlow MCPsearch for recent AI research papers about RAG systems"
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.
ragflow-mcp
Simple RAGFlow MCP. Only useful until the RAGFlow team releases the official MCP server
Installation
We provide two installation methods. Method 2 (using uv) is recommended for faster installation and better dependency management.
Method 1: Using conda
Create a new conda environment:
conda create -n ragflow_mcp python=3.12
conda activate ragflow_mcpClone the repository:
git clone https://github.com/oraichain/ragflow-mcp.git
cd ragflow-mcpInstall dependencies:
pip install -r requirements.txtMethod 2: Using uv (Recommended)
Install uv (A fast Python package installer and resolver):
curl -LsSf https://astral.sh/uv/install.sh | shClone the repository:
git clone https://github.com/oraichain/ragflow-mcp.git
cd ragflow-mcpCreate a new virtual environment and activate it:
uv venv --python 3.12
source .venv/bin/activate # On Unix/macOS
# Or on Windows:
# .venv\Scripts\activateInstall dependencies:
uv pip install -r pyproject.tomlRun MCP Server Inspector for debugging
Start the MCP server
Start the inspector using the following command:
# you can choose a different server
SERVER_PORT=9000 npx @modelcontextprotocol/inspectorThis server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
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.113 npm1MIT
- FlicenseBqualityCmaintenanceA fixed MCP server that interacts with RAGFlow for dataset management and chat operations, handling legacy endpoint errors and providing a fallback to OpenAI-compatible endpoints.5-
- AlicenseNot gradedqualityDmaintenanceA simple MCP server for local documentation with RAG capabilities, enabling AI assistants to access and search local documents.2MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that indexes documents and serves relevant context to LLMs via Retrieval Augmented Generation (RAG).15 npm37MIT