What’s Missing in MCP

What’s Missing in MCP
Over the past couple of months, I’ve been experimenting with the Model Context Protocol (MCP) — building AI agents and tools around it. While the experience has been promising, I’ve noticed a few areas where MCP could be expanded or improved. These aren’t critical issues, but adding them would make MCP more complete and developer-friendly. Here’s my current wishlist: 1. **A Standard MCP Server Interface** 2. **Bidirectional Notifications** 3. **Built-in or Native Transport Layer** Let’s walk through each of these in more detail. ## 1. A Standard MCP Server Interface Several MC
Continue Reading ...

Adding Support for Retrieval-Augmented Generation (RAG) to AI Orchestrator

Adding Support for Retrieval-Augmented Generation (RAG) to AI Orchestrator
Good news! I've extended my lightweight AI orchestrator, **CleverChatty**, to support Retrieval-Augmented Generation (RAG) by integrating it using the **Model Context Protocol (MCP)**. ### Quick Recap * **RAG (Retrieval-Augmented Generation)** is an AI technique that enhances language models by retrieving relevant external documents (e.g., from databases or vector stores) based on a user’s query. These documents are then used as additional context during response generation, enabling more accurate, up-to-date, and grounded outputs. * **MCP (Model Context Protocol)** is a standard
Continue Reading ...