- Understand MCP with a simple analogy.
- Build a local MCP server and interact with it via @cursor_ai IDE.
- Integrate @firecrawl_dev's MCP server and interact with its tools (shown in the video).
Let's dive in 🚀!
First, let's understand MCP using a translation analogy.
Imagine you only know English.
To get info from a person who only knows:
- French, you must learn French.
- German, you must learn German.
- and so on.
Learning even 5 languages will be a nightmare for you!
5 levels of Agentic AI systems, clearly explained (with visuals):
Agentic AI systems don't just generate text; they can make decisions, call functions, and even run autonomous workflows.
The visual explains 5 levels of AI agency—from simple responders to fully autonomous agents.
Let's dive to learn more about them.
1️⃣ Basic responder
- A human guides the entire flow.
- The LLM is just a generic responder that receives an input and produces an output. It has little control over the program flow.
Let's build a multi-agent book writer, powered by DeepMind's Gemma 3 (100% local):
Today, we are building an Agentic workflow that writes a 20k word book from a 3-5 word book title.
Tech stack:
- Bright Data to scrape web at scale.
- @crewAIInc for orchestration.
- @GoogleDeepMind's Gemma 3 as the LLM.
- @ollama to serve Gemma 3 locally.
Let's build it!
Here's our workflow:
• Using Bright Data, Outline Crew scrapes data related to the book title and decides the chapter count and titles.
• Many Writer Crews are invoked in parallel to write one chapter each.
• Combine all chapters to get the book.