Stats
Actions
Tags
From rag-cli
Runs locally as rag-cli Python MCP server for Retrieval-Augmented Generation (RAG) workflows. Supports modes via RAG_CLI_MODE and root directory RAG_CLI_ROOT. No API keys required.
Copy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"rag-cli": {
"command": "python",
"args": [
"-m",
"rag_cli_plugin.mcp.unified_server"
],
"env": {
"PYTHONPATH": "${CLAUDE_PLUGIN_ROOT}:${CLAUDE_PLUGIN_ROOT}/src",
"RAG_CLI_MODE": "claude_code",
"RAG_CLI_ROOT": "${CLAUDE_PLUGIN_ROOT}",
"PYTHONUNBUFFERED": "1"
}
}
}
}Server configuration and connection parameters
pythonCommand-line arguments passed to the server process
Environment variables set when the server starts
PYTHONPATH=${CLAUDE_PLUGIN_ROOT}:${CLAUDE_PLUGIN_ROOT}/srcRAG_CLI_MODE=claude_codeRAG_CLI_ROOT=${CLAUDE_PLUGIN_ROOT}PYTHONUNBUFFERED=1npx claudepluginhub itmediatech/rag-cli --plugin rag-cli