M
Minirag MCP
作者 @witwicki
An MCP interface to MiniRag, with sampling!
创建于 11/28/2025
更新于 17 days ago
README
Repository documentation and setup instructions
MINIRAG-MCP
An MCP Server wrapper around MiniRAG that leverages LLM sampling for client-managed inference.
Core function
MiniRag is an MCP project geared towards efficient and reliable retrieval by small language models). Minirag-MCP makes MiniRAG easier to plug into on-device agent flows.
Additional bells and whistles
- UV management of dependencies that avoid complications in minirag setup
- LLM sampling (inference calls managed by MCP client) with built-in constrained decoding for enhanced reliability
Feature roadmap
- [x] RAG retrieval
- naive retrieval algorithm, implementing a basic query of the vector database
- minirag algorithm, which operates on graph
- [ ] basic insertion (and reindexing)
- [ ] advanced insertion of content from the web
Quick Start
uv run server.py
快速设置
此服务器的安装指南
安装包 (如果需要)
uvx minirag-mcp
Cursor 配置 (mcp.json)
{
"mcpServers": {
"witwicki-minirag-mcp": {
"command": "uvx",
"args": [
"minirag-mcp"
]
}
}
}