top of page
Codersarts Blog.
What’s new and exciting at Codersarts
Search


The Beginner’s Guide to MCP for AI Engineers and Builders
MCP stands for Model Context Protocol.
MCP is basically a standardized way for AI models to connect with tools, applications, databases, APIs, and external systems.

Pratibha
4 hours ago20 min read


How RAG Works Internally: Embeddings, Vector Databases, and Retrieval | Part 2
In this guide, we’ll break down the major internal components of a RAG pipeline step by step in plain English.
We’ll cover:
chunking,
embeddings,
vector databases,
similarity search,
retrieval,
and context injection into LLMs.

Pratibha
2 days ago13 min read


200+ MCP Project Ideas — Build AI-Powered Apps with Claude Desktop
The most comprehensive curated list of Model Context Protocol (MCP) project ideas — from beginner-friendly to advanced.
Whether you're a developer looking to break into AI-powered tooling, a startup founder exploring automation, or a student building your portfolio, this list has something for every skill level. Browse by category, filter by difficulty, and start shipping.

Pratibha
2 days ago7 min read


Why Fine-Tuning Alone Isn’t Enough: Enter RAG
A fine-tuned model can become much better at understanding domain-specific language, following certain workflows, or generating responses in a particular style.
Traditional fine-tuning approaches tried to push knowledge into the model.
RAG flips the approach completely. Instead of permanently storing information inside model weights, RAG allows the AI to retrieve relevant information dynamically at runtime.

Pratibha
3 days ago11 min read


What is RAG? A Beginner’s Guide to Retrieval-Augmented Generation | Part 1
At a high level, RAG is basically a technique that helps AI look up information before answering you instead of relying only on what it remembers from training.

Pratibha
4 days ago12 min read


How to Build a Multi-Agent Research Assistant with LangGraph, FastAPI, and Next.js
The Multi-Agent Research Assistant solves it. You submit a natural language research query. A LangGraph-orchestrated team of specialised agents deploys: a Planner decomposes your question into sub-questions, parallel Researcher agents retrieve and rank sources for each one, a Critic evaluates evidence quality and identifies gaps, a Synthesiser merges findings into a coherent narrative, and a Formatter produces a structured Markdown report with clickable citations — streamed t

Pratibha
7 days ago14 min read


Build an Agentic RAG System with LangGraph | Major Project
In this assignment, you will design and implement a fully agentic RAG pipeline in Python using LangGraph — a stateful, graph-based orchestration framework built on top of LangChain.

Pratibha
7 days ago11 min read


How to Build an AI SQL Generator: Query Any CSV File with Plain English
The AI SQL Generator uploads any CSV file, type a question in plain English, and receive a working SQL query executed against your data — with results displayed in a scrollable table — in seconds.

Pratibha
May 712 min read


Build an AI Quiz Generator with GPT-4o-mini, FastAPI, and React: Architecture Deep Dive
The AI Quiz Generator is a full-stack web application that accepts text, PDFs, YouTube URLs, or images as input and automatically generates structured quizzes — multiple-choice, true/false, or fill-in-the-blank — using GPT-4o-mini. Results appear instantly in a clean React UI, and every quiz you generate can be saved to a local history for later review.

Pratibha
May 712 min read


Build an AI Financial Analyst Using LangGraph | Major Project
In this assignment, students are required to design and develop a fully functional AI-powered Financial Analyst platform using LangGraph and modern AI engineering practices.

Pratibha
May 77 min read


How to Build a Real-Time AI News Aggregator with Django, OpenAI, and Tavily
At its heart, an AI News Aggregator is a retrieval-augmented generation (RAG) pipeline compressed into a conversational interface.

Pratibha
May 612 min read


How to Build an AI Travel Planner with Django, OpenAI, and a Curated Destination Database
At its heart, the AI Travel Planner is a context-enriched language model conversation — a lightweight form of retrieval-augmented generation (RAG) that does not require a vector store, embeddings, or a separate retrieval pipeline.

Pratibha
May 617 min read


How to Build an AI-Powered Constraint Optimizer with GPT-4o, FastAPI, and WebSockets
AI Constraint Optimizer is a full-stack application that accepts natural language descriptions of optimization problems, uses GPT-4o to parse them into a structured representation, selects the best algorithm from a library of eight solvers, runs the solver in real-time while streaming a live narrated explanation to the browser, and then provides an interactive Q&A interface so users can interrogate the solution.

Pratibha
May 612 min read


How to Build a Full-Stack Inventory Management System with React, FastAPI, and SQLite
A production-ready full-stack inventory management system that eliminates spreadsheet chaos, provides real-time stock visibility, and automatically alerts you when inventory falls below reorder thresholds.

Pratibha
May 513 min read


Research Assistant with AI Sampling
Assignment Overview Scenario: You are a research engineer at an academic institution building tools to help researchers manage and analyze scientific literature. Your task is to create an advanced MCP server that not only provides access to research papers but also uses AI sampling (server-initiated LLM calls) to generate intelligent summaries, extract key findings, and compare papers. This assignment builds on Assignment 1 by adding Module 4 concepts: sampling, production pa
ganesh90
Apr 38 min read


Building an Intelligent Task Management Server
Assignment Overview Scenario: You are a software engineer at a productivity software company. Your team is developing an AI-powered personal assistant that helps users manage their daily tasks, projects, and goals. Your task is to build an MCP server that provides intelligent task management capabilities to Claude Desktop, allowing users to interact with their task lists using natural language. Learning Objectives: Implement MCP tools for CRUD operations on task data Design a
ganesh90
Apr 36 min read


Building a FastA2A Orchestrator with Streaming, Multi-Turn Context, and Framework Integration
Purpose In Assignment 1, you built the core protocol and task-handling pieces. In this assignment, you will extend that foundation into a more realistic system that supports streaming responses, multi-turn conversation continuity, framework integration, observability, and production-minded orchestration. This assignment draws heavily on Chapters 6–7 and asks you to show how FastA2A behaves when it is used as the coordination layer for real application workflows. Connection to
ganesh90
Apr 38 min read


AI-Powered Emergency Response Agent: Real-Time Disaster Decision Support
Introduction During a disaster, incident commanders must process conflicting data from dozens of sources, coordinate resources across multiple agencies, and make life-safety decisions under extreme time pressure. Traditional tools and static decision trees cannot keep pace with rapidly evolving, multi-agency incidents. AI-Powered Emergency Response Agents built on Retrieval-Augmented Generation (RAG) address this by continuously retrieving real-time situational data, historic
ganesh90
Apr 29 min read


Designing and Implementing a FastA2A Agent Server with Tasks, Messages, and Discovery
Purpose This assignment requires you to build a working multi-agent service using the FastA2A design principles covered in Chapters 1–5. You will implement agent identity, capability metadata, structured messages, tasks, context handling, routing, and a basic request/response workflow that mirrors the FastA2A protocol model. Your solution should demonstrate how a real agent system moves from discovery to execution and then back to the client with a stable, inspectable task li
ganesh90
Apr 29 min read


Robot Programming Assistance using RAG: Accelerating Industrial Automation with AI Knowledge Systems
Introduction Programming industrial robots requires mastery of multiple proprietary controller languages, motion planning algorithms, safety standards, and constantly evolving vendor documentation. This knowledge burden slows deployments, escalates costs, and creates dangerous skill gaps across automation teams. Robot Programming Assistance Systems powered by Retrieval-Augmented Generation (RAG) address this by dynamically retrieving relevant vendor documentation, safety stan
ganesh90
Apr 28 min read
bottom of page