LOCAL PREVIEW View on GitHub

RAG MCP Integration

Retrieval design (chunking, indexing, hybrid search, reranking), MCP-style tool integration patterns, and the prompt-cache-aware context block. The 'why retrieval first' part of the tuning order.

Interview talking points

  • How do you decide chunk size? Trade-off between recall and signal-to-noise; tune via offline harness, not vibes.
  • Hybrid (BM25 + dense) vs dense only? Hybrid still wins for keyword-heavy queries; matters for product-catalog retrieval.
  • Cohere rerank — where does it fit? As a top-K post-filter when the encoder is good but the dataset is broad.
  • MCP tool schema vs Anthropic tool_use vs OpenAI function-calling. The schema is the same shape — that's the interop story.

Files in this folder

File Title
00-overview-rag-mcp-architecture.md RAG-Based MCP Integration — MangaAssist Amazon Chatbot
01-catalog-search-mcp.md Catalog Search MCP — Manga Title & Metadata Retrieval
02-user-preferences-recommendation-mcp.md User Preference & Recommendation MCP
03-order-inventory-mcp.md Order & Inventory MCP — Real-Time Orders and Stock
04-review-sentiment-mcp.md Review & Sentiment MCP — Community Opinion Synthesis
05-support-policy-mcp.md Support & Policy MCP — FAQ, Returns, and Billing Help
06-trending-discovery-mcp.md Trending & Discovery MCP — Real-Time Trends and New Releases
07-cross-title-link-mcp.md Cross-Title Link MCP — Graph-Based "More Like This" Recommendations
08-mcp-orchestration-router.md MCP Orchestration Router — How Claude Selects and Sequences Tools
09-rag-retrieval-pipeline-deep-dive.md RAG Retrieval Pipeline Deep Dive - Shared Infrastructure
10-mcp-basics-and-amazon-backend-integration.md MCP Server Basics and Amazon Backend Integration Complexity

Back to the home page.