This MCP server, developed by Hannes Rudolph, enables AI assistants to augment their responses with relevant documentation context through vector-based search and retrieval. Built as a fork of qpd-v's original implementation, it integrates with OpenAI for embeddings generation and Qdrant for vector storage. The server provides tools for adding documentation from URLs, performing semantic searches, extracting links, and managing a processing queue. By connecting AI capabilities with efficient vector search of documentation, this implementation allows AI systems to enhance their knowledge with domain-specific information in real-time. It is particularly useful for building documentation-aware AI assistants, implementing semantic documentation search, and creating context-aware developer tools that require access to up-to-date technical information.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Search through stored documentation using natural language queries. Parameters: query (string), limit (optional number)
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 and analyze all URLs from a given web page. Parameters: url (string), add_to_queue (optional boolean)
Remove specific documentation sources from the system by their URLs. Parameters: urls (string[])
List all URLs currently waiting in the documentation processing queue. 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 progress updates.
Remove all pending URLs from the documentation processing queue. This operation is immediate and permanent.