Back

Rahul Agarwal

Founder | Agentic AI... • 6m

3 core protocols behind AI agents. I’ve explained each one in simple steps. 1. 𝗠𝗖𝗣 (𝗠𝗼𝗱𝗲𝗹 𝗖𝗼𝗻𝘁𝗲𝘅𝘁 𝗣𝗿𝗼𝘁𝗼𝗰𝗼𝗹) • 𝗠𝗮𝗶𝗻 𝗣𝘂𝗿𝗽𝗼𝘀𝗲: It helps AI models (LLMs) use extra information by connecting them to tools or databases. • 𝗦𝗰𝗼𝗽𝗲: Direct connection between tools and the AI model. • 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲: Works like a client–server system → server has the tools, model requests them. • 𝗧𝗿𝗮𝗻𝘀𝗽𝗼𝗿𝘁 𝗣𝗿𝗼𝘁𝗼𝗰𝗼𝗹: Communicates using normal web messages (HTTP + JSON). • 𝗗𝗶𝘀𝗰𝗼𝘃𝗲𝗿𝘆 𝗠𝗲𝗰𝗵𝗮𝗻𝗶𝘀𝗺: Server keeps a list of all tools the model can use. • 𝗦𝗲𝗰𝘂𝗿𝗶𝘁𝘆 𝗠𝗼𝗱𝗲𝗹: Only specific APIs are allowed, protected with authentication (OAuth2). • 𝗕𝗲𝘀𝘁 𝗳𝗼𝗿: Apps where AI needs outside data/services. 𝗘𝘅𝗮𝗺𝗽𝗹𝗲: ChatGPT pulling data from your Google Sheets or company database. _______________________________________________ 2. 𝗔𝗖𝗣 (𝗔𝗴𝗲𝗻𝘁 𝗖𝗼𝗺𝗺𝘂𝗻𝗶𝗰𝗮𝘁𝗶𝗼𝗻 𝗣𝗿𝗼𝘁𝗼𝗰𝗼𝗹) • 𝗠𝗮𝗶𝗻 𝗣𝘂𝗿𝗽𝗼𝘀𝗲: Lets multiple agents on the same device work together smoothly. • 𝗦𝗰𝗼𝗽𝗲: Runs locally, focused on the device itself. • 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲: No central server; agents talk directly in a local network. • 𝗧𝗿𝗮𝗻𝘀𝗽𝗼𝗿𝘁 𝗣𝗿𝗼𝘁𝗼𝗰𝗼𝗹: Uses lightweight channels like IPC, ZeroMQ, or gRPC. • 𝗗𝗶𝘀𝗰𝗼𝘃𝗲𝗿𝘆 𝗠𝗲𝗰𝗵𝗮𝗻𝗶𝘀𝗺: Agents announce themselves locally so others can find them. • 𝗦𝗲𝗰𝘂𝗿𝗶𝘁𝘆 𝗠𝗼𝗱𝗲𝗹: Runs in a sandbox for safety. • 𝗕𝗲𝘀𝘁 𝗳𝗼𝗿: Edge, embedded, or offline AI (like IoT devices). 𝗘𝘅𝗮𝗺𝗽𝗹𝗲: A set of AI agents on your phone managing emails, calendar, and tasks together. _______________________________________________ 3. 𝗔2𝗔 (𝗔𝗴𝗲𝗻𝘁-𝘁𝗼-𝗔𝗴𝗲𝗻𝘁 𝗣𝗿𝗼𝘁𝗼𝗰𝗼𝗹) • 𝗠𝗮𝗶𝗻 𝗣𝘂𝗿𝗽𝗼𝘀𝗲: Lets agents from different platforms or companies communicate. • 𝗦𝗰𝗼𝗽𝗲: Focuses on agents collaborating with each other across systems. • 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲: Uses the web (HTTP) with “Agent Cards” that describe what each agent can do. • 𝗧𝗿𝗮𝗻𝘀𝗽𝗼𝗿𝘁 𝗣𝗿𝗼𝘁𝗼𝗰𝗼𝗹: JSON-RPC 2.0 over HTTPS (a standard way for web services to talk). • 𝗗𝗶𝘀𝗰𝗼𝘃𝗲𝗿𝘆 𝗠𝗲𝗰𝗵𝗮𝗻𝗶𝘀𝗺: Agents share their “cards” so others know who they are and what they can do. • 𝗦𝗲𝗰𝘂𝗿𝗶𝘁𝘆 𝗠𝗼𝗱𝗲𝗹: OAuth2 ensures only authorized access, with limited scope for safety. • 𝗕𝗲𝘀𝘁 𝗳𝗼𝗿: Big enterprise workflows linking many agents. 𝗘𝘅𝗮𝗺𝗽𝗹𝗲: Two companies’ AI agents sharing info and working together on a project. In short: • 𝗠𝗖𝗣 → 𝗔𝗜 𝗰𝗼𝗻𝗻𝗲𝗰𝘁𝘀 𝘁𝗼 𝘁𝗼𝗼𝗹𝘀 • 𝗔𝗖𝗣 → 𝗔𝗴𝗲𝗻𝘁𝘀 𝘁𝗲𝗮𝗺 𝘂𝗽 𝗹𝗼𝗰𝗮𝗹𝗹𝘆 • 𝗔2𝗔 → 𝗔𝗴𝗲𝗻𝘁𝘀 𝗰𝗼𝗼𝗽𝗲𝗿𝗮𝘁𝗲 𝗮𝗰𝗿𝗼𝘀𝘀 𝗽𝗹𝗮𝘁𝗳𝗼𝗿𝗺𝘀 ✅ Repost for others in your network who can benefit from this.

Reply
3
5

More like this

Recommendations from Medial

Rahul Agarwal

Founder | Agentic AI... • 3m

7 database types used in modern AI systems. I’ve explained each one in simple steps. 1. 𝗩𝗲𝗰𝘁𝗼𝗿 𝗗𝗮𝘁𝗮𝗯𝗮𝘀𝗲𝘀 • 𝗠𝗮𝗶𝗻 𝗣𝘂𝗿𝗽𝗼𝘀𝗲: Store embeddings so AI can search by meaning. • 𝗛𝗼𝘄 𝗶𝘁 𝘄𝗼𝗿𝗸𝘀: Text/images → vectors → neare

See More
Reply
1
5

Rahul Agarwal

Founder | Agentic AI... • 1m

Everyone learning AI should know these 3 protocols. I've explained each protocol in simple. 𝗠𝗖𝗣 (𝗠𝗼𝗱𝗲𝗹 𝗖𝗼𝗻𝘁𝗲𝘅𝘁 𝗣𝗿𝗼𝘁𝗼𝗰𝗼𝗹) MCP helps AI models 𝗰𝗼𝗻𝗻𝗲𝗰𝘁 𝘁𝗼 𝘁𝗼𝗼𝗹𝘀 𝗮𝗻𝗱 𝗲𝘅𝘁𝗲𝗿𝗻𝗮𝗹 𝗱𝗮𝘁𝗮. • It acts as a brid

See More
Reply
2
Image Description
Image Description

Rahul Agarwal

Founder | Agentic AI... • 5m

6 key steps to build scalable Al agents. I've explained each in short, simple steps below. 1. 𝗦𝘁𝗿𝗮𝘁𝗲𝗴𝘆 → Define the agent’s core purpose → Set clear agent goals → Allocate team, tools, and data → Run ethical/privacy risk assessment early 𝗘

See More
1 Reply
25
23
2
Image Description

Rahul Agarwal

Founder | Agentic AI... • 3m

4 ways how AI systems communicate and coordinate. I've explained each one in detail below. 1. 𝗠𝗖𝗣 (𝗠𝗼𝗱𝗲𝗹 𝗖𝗼𝗻𝘁𝗲𝘅𝘁 𝗣𝗿𝗼𝘁𝗼𝗰𝗼𝗹) • User submits a request: “Summarize today’s Slack messages.” • MCP Client receives input: Interface b

See More
1 Reply
5
Image Description

Rahul Agarwal

Founder | Agentic AI... • 8m

Simple breakdown of different elements in AI systems today. Extremely easy to understand. Here’s more: 𝗟𝗟𝗠𝘀 → Great at text generation and reasoning, but limited to training data. 𝗥𝗔𝗚 (𝗥𝗲𝘁𝗿𝗶𝗲𝘃𝗮𝗹-𝗔𝘂𝗴𝗺𝗲𝗻𝘁𝗲𝗱 𝗚𝗲𝗻𝗲𝗿𝗮𝘁𝗶𝗼

See More
Reply
1
9
1
Image Description
Image Description

Rahul Agarwal

Founder | Agentic AI... • 8m

Simple explanation of Traditional RAG vs Agentic RAG vs MCP. 1. 𝗧𝗿𝗮𝗱𝗶𝘁𝗶𝗼𝗻𝗮𝗹 𝗥𝗔𝗚 (𝗥𝗲𝘁𝗿𝗶𝗲𝘃𝗮𝗹-𝗔𝘂𝗴𝗺𝗲𝗻𝘁𝗲𝗱 𝗚𝗲𝗻𝗲𝗿𝗮𝘁𝗶𝗼𝗻) • 𝗦𝘁𝗲𝗽 1: 𝗨𝘀𝗲𝗿 𝗮𝘀𝗸𝘀 𝗮 𝗾𝘂𝗲𝘀𝘁𝗶𝗼𝗻. Example: “𝘞𝘩𝘢𝘵 𝘪𝘴 𝘵𝘩𝘦 𝘤𝘢𝘱𝘪�

See More
5 Replies
34
41
4

Rahul Agarwal

Founder | Agentic AI... • 4m

Most people don't even know these basics of LLM's. I've explained it in a simple way below. 1. 𝗗𝗮𝘁𝗮 𝗖𝗼𝗹𝗹𝗲𝗰𝘁𝗶𝗼𝗻 LLMs are trained on massive amounts of text from books, websites, articles, and documents so they can learn how language is

See More
Reply
2
7
Image Description
Image Description

Rahul Agarwal

Founder | Agentic AI... • 7m

How do Voice, Coding & Computer Agents work? I've explained each one in a very simple way below. 1. 𝗩𝗼𝗶𝗰𝗲 𝗔𝗴𝗲𝗻𝘁𝘀 AI systems that talk with people using speech. Examples: Vapi, Retell AI, OpenAI TTS etc. 𝗦𝘁𝗲𝗽𝘀: 1. 𝗨𝘀𝗲𝗿 𝘀𝗽𝗲𝗮�

See More
2 Replies
5
17
Image Description
Image Description

Rahul Agarwal

Founder | Agentic AI... • 3m

Most people have no clue why AI gets expensive. I've explained it in a simple way below. 1: 𝗧𝗼𝗸𝗲𝗻 𝗖𝗼𝗻𝘀𝘂𝗺𝗽𝘁𝗶𝗼𝗻 Tokens are pieces of text that AI models read and generate. • Large outputs → more tokens → higher API bills • Long promp

See More
1 Reply
2
7
1

Rahul Agarwal

Founder | Agentic AI... • 2m

Most non tech people learning AI don't get MCP. I've given a simple clear explanation. 1. 𝗨𝘀𝗲𝗿 Everything still starts with the User. • The user wants something done • Example: “Send a message to my team” or “Summarise my Google Docs” But now t

See More
Reply
1
4

Download the medial app to read full posts, comements and news.