MCP Catalogs
Home

rag-anythink-mcp

by serkanyasr·6·Score 39

MCP server for advanced RAG with knowledge graphs, document processing, and multimodal AI support.

ai-llmknowledge-graphdatabase
2
Forks
0
Open issues
4 mo ago
Last commit
2d ago
Indexed

Overview

RAG-Anything MCP Server is a production-ready MCP implementation that combines knowledge graph queries with document processing and multimodal AI capabilities. It features multiple query modes (naive, local, global, hybrid, mix, bypass) for flexible information retrieval, automatic entity and relationship extraction from documents, and hybrid storage using Neo4j and PostgreSQL with pgvector. The server supports processing images, tables, and equations from PDFs, making it suitable for complex document analysis tasks.

Try asking AI

After installing, here are 3 things you can ask your AI assistant:

you:Enterprise document management with knowledge graph-based search
you:Research paper analysis with multimodal content extraction
you:Intelligent question answering over complex technical documents

When to choose this

Choose this server when you need advanced document analysis with knowledge graph relationships and multimodal content extraction, especially if you're already using Neo4j and PostgreSQL.

When NOT to choose this

Avoid this if you need a lightweight solution or don't want to manage Neo4j and PostgreSQL infrastructure, as it requires substantial setup resources.

Tools this server exposes

8 tools extracted from the README
  • ingest_document

    Ingest text or PDF documents

  • query_knowledge_graph

    Query with multiple modes (naive, local, global, hybrid)

  • query_multimodal

    Query with images, tables, equations

  • process_document_file

    Process PDF files with multimodal extraction

  • insert_content_list

    Insert pre-parsed content

  • delete_data

    Delete documents by ID

  • get_graph_statistics

    Get graph statistics

  • get_config_info

    Get configuration info

Comparable tools

neo4j-mcpvector-mcppinecone-mcpchromadb-mcp

Installation

Installation

Quick Start with Docker (Recommended)

# Clone the repository
git clone https://github.com/serkanyasr/rag-anythink-mcp.git
cd rag-anythink-mcp

# Copy environment template
cp .env.example .env

# Edit .env and set your OpenAI API key
# OPENAI_API_KEY=sk-...

# Start all services
docker-compose up -d

# View logs
docker-compose logs -f rag-mcp

Claude Desktop Configuration

Add to your Claude Desktop MCP config:

{
  "mcpServers": {
    "rag-anything": {
      "command": "docker-compose",
      "args": ["up", "rag-mcp"],
      "env": {
        "OPENAI_API_KEY": "your-api-key"
      }
    }
  }
}

Compare rag-anythink-mcp with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.