Qdrant Docs Rag

by hannesrudolph

228 stars
2.2k downloads
Not rated
GitHub

About

Retrieve and process documentation using vector search to provide context for AI assistants.

Details

Author
hannesrudolph
Repository
hannesrudolph/mcp-ragdocs
GitHub stars
228
Downloads
2,174
License
MIT License
Categories
Search, Knowledge Base, Other, Developer Tools, Design, Workplace, File Management, AI, Frontend, Infrastructure

- Vector-based documentation search and retrieval
- Support for multiple documentation sources
- Semantic search capabilities
- Automated documentation processing
- Real-time context augmentation for LLMs

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Qdrant Docs Rag
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 -y
    • Argument 2 @hannesrudolph/mcp-ragdocs
    Environment
    • QDRANT_URL
    • OPENAI_API_KEY
    • QDRANT_API_KEY

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "rag-docs": {
      "command": "npx",
      "args": [
        "-y",
        "@hannesrudolph/mcp-ragdocs"
      ],
      "env": {
        "OPENAI_API_KEY": "",
        "QDRANT_URL": "",
        "QDRANT_API_KEY": ""
      }
    }
  }
}

You'll need to provide values for the following environment variables:
- OPENAI_API_KEY: Your OpenAI API key for embeddings generation
- QDRANT_URL: URL of your Qdrant vector database instance
- QDRANT_API_KEY: API key for authenticating with Qdrant

search_documentation

Search through stored documentation using natural language queries. Returns matching excerpts with context, ranked by relevance. Inputs: query (string), limit (number, optional)

list_sources

List all documentation sources currently stored in the system. Returns a comprehensive list of all indexed documentation including source URLs, titles, and last update times.

extract_urls

Extract and analyze all URLs from a given web page. Inputs: url (string), add_to_queue (boolean, optional)

remove_documentation

Remove specific documentation sources from the system by their URLs. Inputs: urls (string[])

list_queue

List all URLs currently waiting in the documentation processing queue. Shows pending documentation sources that will be processed when run_queue is called.

run_queue

Process and index all URLs currently in the documentation queue. Each URL is processed sequentially with proper error handling and retry logic.

clear_queue

Remove all pending URLs from the documentation processing queue. This operation is immediate and permanent.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "qdrant docs rag": {
            "env": {
                "QDRANT_URL": "",
                "OPENAI_API_KEY": "",
                "QDRANT_API_KEY": ""
            },
            "args": [
                "-y",
                "@hannesrudolph/mcp-ragdocs"
            ],
            "command": "npx"
        }
    }
}

Linux

{
    "env": {
        "QDRANT_URL": "",
        "OPENAI_API_KEY": "",
        "QDRANT_API_KEY": ""
    },
    "args": [
        "-y",
        "@hannesrudolph/mcp-ragdocs"
    ],
    "command": "npx"
}

Macos

{
    "env": {
        "QDRANT_URL": "",
        "OPENAI_API_KEY": "",
        "QDRANT_API_KEY": ""
    },
    "args": [
        "-y",
        "@hannesrudolph/mcp-ragdocs"
    ],
    "command": "npx"
}

Windows

{
    "env": {
        "QDRANT_URL": "",
        "OPENAI_API_KEY": "",
        "QDRANT_API_KEY": ""
    },
    "args": [
        "/c",
        "npx",
        "-y",
        "@hannesrudolph/mcp-ragdocs"
    ],
    "command": "cmd"
}
An MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context. - Vector-based documentation search and retrieval - Support for multiple documentation sources - Semantic search capabilities - Automated documentation processing - Real-time context augmentation for LLMs Search through stored documentation using natural language queries. Returns matching excerpts with context, ranked by relevance. - `query`(string): The text to search for in the documentation. Can be a natural language query, specific terms, or code snippets. - `limit`(number, optional): Maximum number of results to return (1-20, default: 5). Higher limits provide more comprehensive results but may take longer to process. List all documentation sources currently stored in the system. Returns a comprehensive list of all indexed documentation including source URLs, titles, and last update times. Use this to understand what documentation is available for searching or to verify if specific sources have been indexed. Extract and analyze all URLs from a given web page. This tool crawls the specified webpage, identifies all hyperlinks, and optionally adds them to the processing queue. - `url`(string): The complete URL of the webpage to analyze (must include protocol, e.g., https://). The page must be publicly accessible. - `add_to_queue`(boolean, optional): If true, automatically add extracted URLs to the processing queue for later indexing. Use with caution on large sites to avoid excessive queuing. Remove specific documentation sources from the system by their URLs. The removal is permanent and will affect future search results. - `urls`(string[]): Array of URLs to remove from the database. Each URL must exactly match the URL used when the documentation was added. List all URLs currently waiting in the documentation processing queue. Shows pending documentation sources that will be processed when run_queue is called. Use this to monitor queue status, verify URLs were added correctly, or check processing backlog. Process and index all URLs currently in the documentation queue. Each URL is processed sequentially, with proper error handling and retry logic. Progress updates are provided as processing occurs. Long-running operations will process until the queue is empty or an unrecoverable error occurs. Remove all pending URLs from the documentation processing queue. Use this to reset the queue when you want to start fresh, remove unwanted URLs, or cancel pending processing. This operation is immediate and permanent - URLs will need to be re-added if you want to process them later. The RAG Documentation tool is designed for: - Enhancing AI responses with relevant documentation - Building documentation-aware AI assistants - Creating context-aware tooling for developers - Implementing semantic documentation search - Augmenting existing knowledge bases Add this to your`claude_desktop_config.json`: ``` `{ "mcpServers": { "rag-docs": { "command": "npx", "args": [ "-y", "@hannesrudolph/mcp-ragdocs" ], "env": { "OPENAI_API_KEY": "", "QDRANT_URL": "", "QDRANT_API_KEY": "" } } } }` ``` You'll need to provide values for the following environment variables: - `OPENAI_API_KEY`: Your OpenAI API key for embeddings generation - `QDRANT_URL`: URL of your Qdrant vector database instance - `QDRANT_API_KEY`: API key for authenticating with Qdrant This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository. This project is a fork of[qpd-v/mcp-ragdocs, originally developed by qpd-v. The original project provided the foundation for this implementation. Search global news using natural language. Webz.io News Search API returns the most relevant articles and content, with filters for source, country, language, date, sentiment, and category. Semantic search for Hex package documentation. Requires local Elixir and Mix installation. Retrieve and process documentation using vector search to provide relevant context for AI assistants. Search and query Teleport's documentation using embeddings stored in a local Chroma vector database. MCP server for Apache AGE graph databases on PostgreSQL. **21 MCP tools** — the most comprehensive Apache AGE MCP server (graph CRUD, Cypher queries, batch transactions, semantic search, Graph RAG, vis.js visualization, export/import) - **F#/.NET** — the only non-Python Apache AGE MCP server, installs as a single dotnet tool - **Production-grade** — BenchmarkDotNet-verified performance (cached queries in 62 ns, Cypher in 1 ms) - **Open source** — MIT license, published on ](https://github.com/qpd-v/mcp-ragdocs)[NuGet](https://www.nuget.org/packages/AgeMcp) - **Documentation** — full docs site at neftedollar.com/age-mcp Local semantic search over React Native docs for AI agents — no API key Discovery & reputation layer for AI agents: semantic search over 15,000+ agents and MCP servers, cross-registry reputation, remote MCP over Streamable HTTP, no auth. An MCP server providing semantic search capabilities for APLCart data. MCP server for Christian scholarship and research — scripture, Greek/Hebrew word data, cross-references, patristic texts, and semantic search, Free local RAG for Claude Code - Save tokens & time with vector search. Indexes markdown docs and finds relevant info without reading entire files (40x fewer tokens, 15x faster). Access and search EPUB ebook collections using semantic vector search.
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.