Nexus RAG MCP Server
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., "@Nexus RAG MCP ServerRecall our discussion on authentication."
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.
Nexus RAG MCP Server 🧠
The "Second Brain" for your AI Assistant.
Configuration • Usage • Tools • Troubleshooting
🚀 Overview
Nexus is a local Model Context Protocol (MCP) server that gives your AI agents (like Claude Desktop, Cursor, etc.) Long-Term Memory and RAG (Retrieval-Augmented Generation) capabilities.
It runs on your local machine, indexes your files, and allows your AI to:
Recall past conversations and decisions.
Search your local codebase and notes.
Learn your preferences over time.
Related MCP server: ContextKeep
⚙️ Configuration (Zero-Setup)
You don't need to manually install Nexus. Just use uvx to run it directly from the repository.
1. Claude Desktop App
To use Nexus with Claude, add the following to your config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"nexus": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/kaushikkumarkr/RAG-MCP",
"nexus",
"serve"
]
}
}
}Note: This requires uv to be installed. Nexus will automatically initialize its database at
~/.nexuson the first run.
2. Cursor / Windsurf / Other IDEs
Go to Settings > Features > MCP and add a new server:
Name:
nexusType:
stdioCommand:
uvx --from git+https://github.com/kaushikkumarkr/RAG-MCP nexus serve
💬 Usage Examples
Once connected, you can talk to your AI naturally. Nexus will automatically trigger the right tools.
🧠 Memory (Long-Term Storage)
User: "Remember that for the 'Financial Dashboard' project, we depend on the
pandas2.0 library and usepytestfor testing."AI: "Understood. I've saved that context for the Financial Dashboard project." (Tool used:
remember)
🔍 Retrieval (RAG)
User: "How do we handle authentication in this codebase?"
AI: "According to
docs/auth_flow.md, we use JWT tokens via Auth0..." (Tool used:search_knowledge)
⚡ Context Injection
User: "I'm starting work on the backend API. Get me up to speed."
AI: "Checking project context... Okay, for the backend API:
We use FastAPI.
The DB is Postgres.
Warning: Migration scripts are in
/alembic." (Tool used:get_project_context)
🛠️ Available Tools
Tool | Description | Arguments |
| Search your local documents. |
|
| Store a fact or memory. |
|
| Retrieve memories. |
|
| Get full overview of a project. |
|
| Get learned user habits. | None |
| Save content from other MCPs. |
|
| Create a markdown note. |
|
| List indexed files. | None |
🛡️ Citations & Grounding
Nexus citations are precise. Every answer includes:
Source Path: File path (
/docs/api.md).Relevance: Confidence score (0-1).
Quote: Exact text chunk used.
❓ Troubleshooting
Server not starting?
Run the built-in status check to verify your database and config:
nexus status"Tool not found" error?
Ensure you have restarted your client (Claude/Cursor) after editing the config file.
How do I see what's happening?
Nexus logs to stderr. In Claude Desktop, you can open the Developer Console to see the MCP logs in real-time.
🏗️ System Architecture
Nexus uses a Dual-Layer Cognitive Architecture that separates fast retrieval from deep understanding.

Built with: Python 3.11 • Qdrant • Sentence-Transformers • RAGAS
This server cannot be deployed
Maintenance
Related MCP Connectors
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Persistent memory for AI agents. Search, store, and recall across sessions.
Universal persistent memory and knowledge retrieval layer for AI agents and LLMs.
Persistent memory and knowledge graphs for AI agents. Hybrid search, context checkpoints, and more.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceProvides AI agents with persistent, searchable memory that survives across conversations using semantic search, temporal versioning, and smart organization. Enables long-term context retention and cross-session continuity for AI assistants.14-
- AlicenseNot gradedqualityAmaintenanceProvides infinite long-term memory for AI agents with persistent, searchable storage of project details, preferences, and snippets. Reduces token costs by retrieving only relevant memories while keeping all data stored locally.157MIT

Memsolus MCP Serverofficial
AlicenseAqualityDmaintenanceProvides persistent long-term memory for AI agents through semantic search and automated knowledge graph extraction. It enables agents to store, recall, and reason over facts, preferences, and relationships across multiple conversations and sessions.148 npmMIT- AlicenseAqualityAmaintenanceProvides persistent, searchable memory for AI agents, enabling them to retain, recall, and reflect on information across conversations.1919 PyPI1MIT