Nexus RAG MCP Server
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., "@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.
⚙️ 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/kaushikkumarkr/RAG-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server