Gen-AI Developer Classroom notes 17/May/2026

MCP – Client Building mcp client with fast mcp Refer Here for changes Using mcp servers in langchain As part of this we will build a very small agent which will have llm and also mcp servers Refer Here for the basic agent which adds the book to the library by calling mcp server

Gen-AI Developer Classroom notes 16/May/2026

Library – MCP We will try to connect our mcp server which interacts with database with claude Connecting to a mysql database Connection Cursor For python to speak with mysql it needs a connector (external package) External packages for mysql connection Sample insert record INSERT INTO `books` (`id`, `title`, `author`, `published_year`, `available_copies`, `total_copies`, `genre`, `available`,… Continue reading Gen-AI Developer Classroom notes 16/May/2026

Gen-AI Developer Classroom notes 13/May/2026

Resources in mcp Refer Here for the official docs Refer Here for the changes done to create a resource Refer Here for resource templates Refer Here for the changes done to create a resource template. Refer Here for official docs of prompts

Gen-AI Developer Classroom notes 12/May/2026

MCP Transport Streamable HTTP This mechanism suggests is designed to support over standard HTTP infrastructure request/response streaming responses bi-directional event-style communication tool execution progress long-running opertions Building simple mcp server with Streamable http transport Watch the video for steps Create a simple python project with server.py, ensure mcp[cli] package is added to venv from mcp.server.fastmcp… Continue reading Gen-AI Developer Classroom notes 12/May/2026

Python Classroom notes 10/May/2026

Problem statement Establishing communication between Two applications running in same machine Using files or streams Remoting Establishing communication between Two applications running in different machines Remoting (Technology specific) Webservices (SOAP) => (client is fat and data exchanges are bulky) HTTP Clients and data format is mostly json REST APIs GraphQL APIS GRPC (Google Remote Procedural… Continue reading Python Classroom notes 10/May/2026

Python Classroom notes 06/May/2026

Multiprocessing vs Threads GIL with threads Multiprocessing Prompt show me how to use multiprocessor to solve the GIL problem with a simple code in python Also show threading and then multiprocessor Asynchronous programming Is ideal for I/O bound In synchronous programming we perform tasks sequentially

Gen-AI Developer Classroom notes 04/May/2026

MCP Contd Visual studio Code supports multiple programming languages intellisense, for this microsoft has given a specification called Language server protocol. In Anthropic a developer name David sora was working on internal project and he was use claude desktop Copying code from claude and executing which he didn’t liked, inspired from LSP he formulated MCP… Continue reading Gen-AI Developer Classroom notes 04/May/2026