AI Research Assistant MCP Server
Enables building and orchestrating the RAG-based retrieval pipeline and multi-tool agent architecture.
Supports integration with Milvus vector database as a configurable option for document storage and retrieval in the RAG system.
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., "@AI Research Assistant MCP Serverfind recent papers about transformer architecture improvements"
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-based AI Research Assistant (RAG + LangChain + Claude)
What it does
AI agent that retrieves documents, processes context, and answers queries using an MCP architecture with RAG (Retrieval-Augmented Generation).
Tech stack
LangChain
Claude / Ollama-compatible models
Vector DB: Chroma (example; configurable to Pinecone, Milvus, etc.)
MCP (Model Context Protocol) for multi-tool orchestration
Features
RAG-based retrieval pipeline
Multi-tool agent (indexing, retrieval, LLM reasoning, tool calls)
API integrations for internal data sources
Demo
See /app/demo_output.md for an example run showing Input → Retrieved documents → Final AI response. Include screenshots or short GIFs in the presentation/ folder if available.
How to run (quick)
Create a virtual environment and install requirements.
python -m venv .venv
.venv\Scripts\activate # Windows
pip install -r requirements.txtConfigure environment variables for your model and vector DB (examples):
export OPENAI_API_KEY=...
export CLAUDE_API_KEY=...
# For Windows PowerShell:
$env:CLAUDE_API_KEY = '...'Run the RAG pipeline or the MCP server components (examples):
python -m rag_pipeline.run # pipeline entry (if present)
python -m mcp_server.server # MCP server (if present)Notes
This repo has been reorganized to focus on a single concrete use-case: a Company Knowledgebase AI. Legacy course material was archived under
/legacy_course.If you want the legacy numbered course folders removed or migrated into
/legacy_course, confirm and I will move them.
This server cannot be deployed
Maintenance
Related MCP Connectors
Cloud or self-hosted knowledge for AI agents: hybrid search, reranking, GraphRAG, scoped MCP tools.
The CustomGPT.ai MCP server is a fully managed, RAG-powered endpoint that connects large language models with private knowledge bases and external data sources. It provides tools for retrieval-augmented generation queries (send_message), data ingestion (upload_file), and source listing, enabling AI agents to query private documents like PDFs with high accuracy and real-time citations.
- docs2mcpOAuthcom.docs2mcp
Query your own PDFs and documents from any MCP client. Every answer cites the page it came from.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to search, deep-read, and build knowledge bases from Markdown, PDF, DOCX, and PPTX documents via MCP tools for retrieval, document navigation, and ingestion.16 npm633MIT
- AlicenseNot gradedqualityDmaintenanceEnables querying enterprise documents (DOCX, PDF, PPTX) using natural language, with hybrid search and MCP integration for Claude Desktop and other agents.MIT
- AlicenseNot gradedqualityBmaintenanceEnables document-based Q&A with multi-modal RAG, hybrid retrieval, knowledge graph reasoning, and multi-agent orchestration via MCP tools.4MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that provides 7 specialized agents with RAG knowledge bases, allowing Claude to search and ask domain-specific questions and route tasks to the appropriate agent without API keys.2 npm1-