Patterns for using FAISS MCP tools to ingest documents and perform semantic retrieval.
Patterns for using the antigravity-rag tools to ingest documents into Qdrant and perform semantic retrieval (Parent-Child strategy).
antigravity-rag server must be running and configured in mcp_config.json.qdrant-client and fastembed installed.mcp_antigravity-rag_ingest_document: Adds external documents (PDF) to the Qdrant vector store.mcp_antigravity-rag_search_library: Performs semantic search and retrieves parent chunks for rich context.mcp_antigravity-rag_list_library_sources: Lists all unique documents currently indexed.mcp_local-faiss-mcp_search_semantic: Performs pure semantic search without LLM generation.Document Ingestion
ingest_document to index new knowledge.mcp_local-faiss-mcp_ingest_document(path="./docs/manual.pdf")RAG Workflow
query_rag_store.mcp_local-faiss-mcp_query_rag_store(query="How do I configure the server?")Pure Semantic Search
search_semantic.mcp_local-faiss-mcp_search_semantic(query="installation steps")When the user provides new files or links that should be "remembered":
ingest_document.When the user asks "How do I..." or "What is..." regarding the project context:
search_library first to see if the answer is in the vector base.Category:other