An MCP server for rag-anything (A multi-modal RAG system)
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"rag-anything-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server for rag-anything (A multi-modal RAG system)
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in other
Pi Coding Agent extension (CLI-first) — routes bash/read/grep/find/ls through lean-ctx CLI for strong token savings. Optional MCP bridge can register advanced tools.
Apify MCP Server
97% token reduction for AI coding sessions — zero deps, 21 languages, MCP server
MCP proxy that compresses prose fields (tool descriptions, etc.) using caveman rules. Same accuracy, fewer context tokens.
MCP Security Weekly
Get CVE alerts and security updates for Rag Anything Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that provides comprehensive RAG (Retrieval-Augmented Generation) capabilities for processing and querying directories of documents using the raganything library with full multimodal support.
process_directoryProcess all files in a directory for comprehensive RAG indexing with multimodal support.
Required Parameters:
directory_path: Path to the directory containing files to processapi_key: OpenAI API key for LLM and embedding functionsOptional Parameters:
working_dir: Custom working directory for RAG storagebase_url: OpenAI API base URL (for custom endpoints)file_extensions: List of file extensions to process (default: ['.pdf', '.docx', '.pptx', '.txt', '.md'])recursive: Process subdirectories (default: True)enable_image_processing: Enable image analysis (default: True)enable_table_processing: Enable table extraction (default: True)enable_equation_processing: Enable equation processing (default: True)max_workers: Concurrent processing workers (default: 4)process_single_documentProcess a single document with full multimodal analysis.
Required Parameters:
file_path: Path to the document to processapi_key: OpenAI API keyOptional Parameters:
working_dir: Custom working directory for RAG storagebase_url: OpenAI API base URLoutput_dir: Output directory for parsed contentparse_method: Document parsing method (default: "auto")enable_image_processing: Enable image analysis (default: True)enable_table_processing: Enable table extraction (default: True)enable_equation_processing: Enable equation processing (default: True)query_directoryPure text query against processed documents using LightRAG.
Parameters:
directory_path: Path to the processed directoryquery: The question to ask about the documentsmode: Query mode - "hybrid", "local", "global", "naive", "mix", or "bypass" (default: "hybrid")query_with_multimodal_contentEnhanced query with additional multimodal content (tables, equations, etc.).
Parameters:
directory_path: Path to the processed directoryquery: The question to askmultimodal_content: List of multimodal content dictionariesmode: Query mode (default: "hybrid")Example multimodal_content:
[
{
"type": "table",
"table_data": "Method,Accuracy\\nRAGAnything,95.2%\\nBaseline,87.3%",
"table_caption": "Performance comparison"
},
{
"type": "equation",
"latex": "P(d|q) = \\frac{P(q|d) \\cdot P(d)}{P(q)}",
"equation_caption": "Document relevance probability"
}
]
list_processed_directoriesList all directories that have been processed and are available for querying.
get_rag_infoGet detailed information about the RAG configuration and status for a directory.
process_directory(
directory_path="/path/to/documents",
api_key="your-openai-api-key"
)
process_directory(
directory_path="/path/to/research_papers",
api_key="your-openai-api-key",
file_extensions=[".pdf", ".docx"],
enable_image_processing=true,
enable_table_processing=true,
max_workers=6
)
query_directory(
directory_path="/path/to/docum
... [View full README on GitHub](https://github.com/jesse-merhi/rag-anything-mcp#readme)