Notes Rag
БесплатноНе проверенA Python MCP server for note management with RAG capabilities, enabling adding, searching, asking questions, summarizing, and deleting notes, using PostgreSQL a
Описание
A Python MCP server for note management with RAG capabilities, enabling adding, searching, asking questions, summarizing, and deleting notes, using PostgreSQL and ChromaDB with Google Gemini for embeddings and generation.
README
Notes RAG MCP Server
A Python MCP server that exposes RAG-powered note management as AI agent tools — combining PostgreSQL, ChromaDB, and Google Gemini via a LangChain LCEL pipeline.
Table of Contents
- Overview
- Features
- Architecture
- Tech Stack
- Getting Started
- Configuration
- MCP Tools
- Connecting to MCP Clients
- Project Structure
- License
Overview
Notes RAG MCP Server is a Model Context Protocol server that turns a personal note collection into a knowledge base an AI agent can query. Notes are persisted in PostgreSQL (source of truth), their embeddings stored in ChromaDB, and answers generated by Google Gemini through a declarative LangChain LCEL chain.
Any MCP-compatible client — Claude Desktop, Claude Code, the MCP Inspector, or a custom agent — can call the six exposed tools to add, search, ask, summarize, list, and delete notes.
Features
- Semantic search — vector similarity search via ChromaDB returns the most relevant notes for any query
- RAG Q&A — a full LCEL pipeline (
retriever | prompt | llm | parser) grounds answers strictly in stored notes, never hallucinating beyond context - Consistent dual store — every write and delete keeps PostgreSQL and ChromaDB in sync automatically
- Note summarization — dedicated LCEL chain condenses any note to 2–3 sentences on demand
- MCP resource — notes are also exposed as
notes://<id>resources for direct content access - Lazy initialization — Gemini and ChromaDB clients are created only on first use; importing the module requires no API key
- Idempotent setup — the database schema is applied at startup with
IF NOT EXISTS; safe to restart at any time
Architecture
MCP Client (Claude Desktop / Inspector / Claude Code)
│ stdio transport
▼
┌─────────────────────────────┐
│ server.py │
│ FastMCP — 6 tools + │
│ notes://{id} resource │
└────────┬────────────────────┘
│
┌────┴────┐
▼ ▼
┌────────┐ ┌──────────────────────────────────────┐
│ db.py │ │ rag_chain.py │
│ │ │ GoogleGenerativeAIEmbeddings │
│ psycopg│ │ ChatGoogleGenerativeAI (Gemini) │
│ 3 │ │ Chroma (langchain-chroma) │
│ │ │ │
│ Source │ │ LCEL: retriever | prompt | llm | │
│ of │ │ StrOutputParser │
│ truth │ └──────────────────────────────────────┘
└───┬────┘ │
│ │
▼ ▼
┌──────────┐ ┌───────────┐
│PostgreSQL│ │ ChromaDB │
│ (notes │ │ (vector │
│ table) │ │ index) │
└──────────┘ └───────────┘
RAG question flow (ask tool):
{"context": retriever | format_docs, "question": RunnablePassthrough()}
| prompt | llm | StrOutputParser()
The ChromaDB retriever fetches the most similar notes → format_docs merges them into a context block → Gemini answers only from that context.
Tech Stack
| Layer | Technology |
|---|---|
| MCP server | FastMCP (mcp[cli]) |
| LLM | Google Gemini 2.5 Flash (langchain-google-genai) |
| Embeddings | Gemini Embedding 001 (gemini-embedding-001) |
| RAG pipeline | LangChain LCEL (langchain-core) |
| Vector store | ChromaDB (langchain-chroma) |
| Relational DB | PostgreSQL 15 (psycopg 3) |
| Config | python-dotenv |
Getting Started
Prerequisites
- Python ≥ 3.12
- PostgreSQL running locally (e.g.
postgresql@15via Homebrew) - A Google AI Studio API key
Installation
# 1. Clone the repository
git clone https://github.com/konradxmalinowski/project-rag-mcp.git
cd project-rag-mcp
# 2. Create and activate a virtual environment
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
# 3. Install dependencies
pip install -e .
# 4. Create the database
createdb notes_mcp
# 5. Configure environment variables
cp .env.example .env
# Edit .env — set GEMINI_API_KEY and verify DATABASE_URL
The notes table is created automatically on first server startup. You can also apply the schema manually:
psql -d notes_mcp -f schema.sql
Configuration
| Variable | Required | Default | Description |
|---|---|---|---|
GEMINI_API_KEY |
Yes | — | Google AI Studio API key |
DATABASE_URL |
Yes | — | PostgreSQL connection string |
CHROMA_PATH |
No | ./chroma_db |
Persistent ChromaDB directory |
GEMINI_CHAT_MODEL |
No | gemini-2.5-flash |
Chat model for generation |
GEMINI_EMBED_MODEL |
No | gemini-embedding-001 |
Embedding model |
Copy .env.example to .env and fill in the required values. Never commit .env.
MCP Tools
| Tool | Description |
|---|---|
add_note(title, content) |
Persist a note to PostgreSQL and index its embedding in ChromaDB |
search_notes(query, top_k=3) |
Semantic similarity search — returns title, snippet, and distance |
ask(question, top_k=3) |
Full RAG: retrieve relevant notes → generate a grounded answer via Gemini |
list_notes() |
Return all notes (id, title, created_at), newest first |
summarize_note(note_id) |
Summarize a single note in 2–3 sentences using Gemini |
delete_note(note_id) |
Remove a note from both PostgreSQL and ChromaDB |
MCP resource: notes://{note_id} — exposes raw note content for direct read access.
Connecting to MCP Clients
MCP Inspector (browser UI — easiest for testing)
mcp dev server.py
Open the Inspector in your browser. In the Tools tab:
add_note("Python GIL", "The GIL is a mutex that protects access to Python objects...")- Add 2–3 more notes on different topics.
search_notes("what is the GIL")→ the GIL note should rank first.ask("explain the GIL based on my notes")→ grounded answer citing note titles.summarize_note(1), thendelete_note(1)→ verify PostgreSQL ↔ ChromaDB consistency.
Claude Desktop
Add the following entry to your Claude Desktop MCP config (claude_desktop_config.json):
{
"mcpServers": {
"notes-rag": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["/absolute/path/to/server.py"]
}
}
}
Claude Code (CLI)
claude mcp add notes-rag /absolute/path/to/.venv/bin/python -- /absolute/path/to/server.py
Project Structure
project-rag-mcp/
├── server.py # FastMCP entry point — 6 tools + notes resource
├── rag_chain.py # LangChain LCEL: Gemini + ChromaDB + RAG chain
├── db.py # PostgreSQL data layer (psycopg3)
├── schema.sql # notes table DDL
├── pyproject.toml # project metadata and dependencies
├── .env.example # environment variable template
└── LICENSE
License
MIT © 2025 Konrad Malinowski
Установить Notes Rag в Claude Desktop, Claude Code, Cursor
unyly install notes-rag-mcpСтавит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.
Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh
Или настроить вручную
Выполни в терминале:
claude mcp add notes-rag-mcp -- uvx --from git+https://github.com/konradxmalinowski/mcp-notes notes-rag-mcpFAQ
Notes Rag MCP бесплатный?
Да, Notes Rag MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Notes Rag?
Нет, Notes Rag работает без API-ключей и переменных окружения.
Notes Rag — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Notes Rag в Claude Desktop, Claude Code или Cursor?
Открой Notes Rag на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Notes Rag with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
