DuckDB-RAG-MCP-Sample
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., "@DuckDB-RAG-MCP-Samplesearch for information about vector embeddings in my markdown docs"
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.
DuckDB RAG MCP Sample
This is a sample that embeds and vectorizes a markdown document so that it can be explained using MCP and RAG.
We use Plamo-Embedding-1B for vectorization.
function
Extract and vectorize text from markdown files
Vector Searching with DuckDB
Persisting vector data with Parquet files
Vector search from MCP
Related MCP server: RAG-MCP
How to use
Vector data generation
First, place the markdown files you want to search in a specific directory, then convert them to Parquet files with the following command.
uv run main.py --directory ~/path/to/markdown/files --parquet vectors.parquetConfiguring MCP
Build
The following command will generate a single binary in dist/server .
uv run pyinstaller --clean --strip --noconfirm --onefile server.pyMCP Client Configuration
Please set it according to the client you want to use.
For Claude Desktop it looks like this:
For VECTOR_PARQUET, specify the file you just converted.
uv run mcp install server.py -v VECTOR_PARQUET=/path/to/vectors.parquetIt is set as follows:
{
"mcpServers": {
"DuckDB-RAG-MCP-Sample": {
"command": "/path/to/dist/server",
"env": {
"VECTOR_PARQUET": "/path/to/vectors.parquet"
}
}
}
}Start the development server
uv run mcp dev server.pylicense
The DuckDB RAG MCP Sample is provided under the Apache License, Version 2.0.
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.
Related MCP Servers
- Alicense-qualityDmaintenanceAn MCP server that indexes documents and serves relevant context to LLMs via Retrieval Augmented Generation (RAG).24536MIT
- Flicense-qualityDmaintenanceA Retrieval Augmented Generation MCP server that ingests documents into a local vector database and enables semantic search queries.10
- Alicense-qualityDmaintenanceMCP RAG Server is a Python MCP server that indexes documents in multiple formats (Markdown, text, PowerPoint, PDF) using multilingual-e5-large embeddings and enables vector search for retrieval-augmented generation.MIT
- Alicense-qualityCmaintenanceAn MCP server that enables semantic search over a private knowledge base via pgvector, with GitHub OAuth authentication and a RAG pipeline.11MIT
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
An MCP server that gives your AI access to the source code and docs of all public github repos
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/nananaman/DuckDB-RAG-MCP-Sample'
If you have feedback or need assistance with the MCP directory API, please join our Discord server