Designing Real-World AI Agents Workshop

v1.0.0Coding Agentsstable

Hands-on workshop: Build a multi-agent AI system from scratch — Deep Research Agent + Writing Workflow served as MCP servers. Includes code, slides, and video

ai-agentai-skillsai-workflowdeep-researchmcp
Share:
422
Stars
0
Downloads
0
Weekly
0/5

What is Designing Real-World AI Agents Workshop?

Designing Real-World AI Agents Workshop is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to hands-on workshop: build a multi-agent ai system from scratch — deep research agent + writing workflow served as mcp servers. includes code, slides, and video

Hands-on workshop: Build a multi-agent AI system from scratch — Deep Research Agent + Writing Workflow served as MCP servers. Includes code, slides, and video

This server falls under the Coding Agents category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Hands-on workshop: Build a multi-agent AI system from scratc

Use Cases

Learn to build multi-agent systems with deep research and writing workflows.
Access hands-on code, slides, and video tutorials for agentic AI.
iusztinpaul

Maintainer

LicenseMIT
Languagepython
Versionv1.0.0
UpdatedMay 22, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx designing-real-world-ai-agents-workshop

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Designing Real-World AI Agents Workshop

Designing Real-World AI Agents Workshop is a hands-on educational project that walks developers through building a production-grade multi-agent AI system from scratch, served as MCP servers. The workshop produces two working MCP servers: a Deep Research Agent that executes multi-step grounded searches with Google Search and YouTube video analysis, and a LinkedIn Writing Workflow that iteratively drafts, refines, and illustrates posts. Full source code, slide deck, and recorded video are included, making it a complete learning resource for engineers who want to move from toy LLM demos to real agentic systems using FastMCP, Google Gemini, and Pydantic.

Prerequisites

  • Python 3.12 or later
  • uv package manager installed ('pip install uv' or see https://docs.astral.sh/uv/)'
  • A Google AI Studio API key with Gemini access (GOOGLE_API_KEY) from https://aistudio.google.com/apikey
  • An Opik API key (optional, for observability) from https://www.comet.com/site/products/opik/
  • An MCP-compatible client such as Claude Desktop if you want to expose the agents as MCP servers
1

Clone the repository

Clone the workshop repository to your local machine. The repo contains all agent code, configuration templates, slides, and Make targets.

git clone https://github.com/iusztinpaul/designing-real-world-ai-agents-workshop.git
cd designing-real-world-ai-agents-workshop
2

Set up environment variables

Copy the example .env file and fill in your API keys. GOOGLE_API_KEY is mandatory; OPIK_API_KEY is optional but recommended for tracking agent runs.

cp .env.example .env
# Edit .env and set:
# GOOGLE_API_KEY=your_google_ai_studio_key
# OPIK_API_KEY=your_opik_key  (optional)
3

Install dependencies with uv

The project uses uv for fast, reproducible Python dependency management. Run uv sync to install all packages defined in pyproject.toml.

uv sync
4

Run the end-to-end tests to verify setup

The Makefile provides a test target that exercises both agents end-to-end. Passing tests confirm your API keys and dependencies are correctly configured.

make test-end-to-end
5

Configure the MCP servers in Claude Desktop

Each agent is served as a separate MCP server. Add both the Deep Research server and the LinkedIn Writing server to your claude_desktop_config.json pointing to their respective module entry points.

{
  "mcpServers": {
    "deep-research-agent": {
      "command": "uv",
      "args": ["run", "python", "-m", "src.deep_research.mcp_server"],
      "cwd": "/path/to/designing-real-world-ai-agents-workshop",
      "env": {
        "GOOGLE_API_KEY": "your_google_api_key"
      }
    }
  }
}
6

Explore the four execution modes

The workshop supports four ways to run the agents: as MCP servers (for Claude Desktop integration), as slash-command skills, through a Streamlit web UI, or directly via Make targets. Start with the Streamlit UI for an interactive introduction before wiring up the MCP servers.

# Launch Streamlit UI
make streamlit

Designing Real-World AI Agents Workshop Examples

Client configuration

Claude Desktop configuration for the Deep Research Agent MCP server, run via uv from the workshop directory.

{
  "mcpServers": {
    "deep-research-agent": {
      "command": "uv",
      "args": ["run", "python", "-m", "src.deep_research.mcp_server"],
      "cwd": "/path/to/designing-real-world-ai-agents-workshop",
      "env": {
        "GOOGLE_API_KEY": "your_google_ai_studio_key"
      }
    }
  }
}

Prompts to try

Prompts that exercise the Deep Research Agent and LinkedIn Writing Workflow built in the workshop.

- "Use the deep research agent to investigate the latest developments in AI inference optimisation"
- "Analyse this YouTube video and summarise the key technical points: [YouTube URL]"
- "Compile a research report on open-source LLM fine-tuning techniques from the last 6 months"
- "Draft a LinkedIn post about the importance of evaluation in production AI systems"
- "Edit the LinkedIn draft to be more concise and add a call to action"

Troubleshooting Designing Real-World AI Agents Workshop

GOOGLE_API_KEY errors or Gemini API authentication failure

Ensure the key is set in the .env file and that you are using a key from Google AI Studio (aistudio.google.com/apikey), not a Google Cloud service account key. Run 'make test-end-to-end' to validate the key before starting the MCP servers.

'uv: command not found' when starting the MCP server

Install uv with 'pip install uv' or follow the official installation guide at https://docs.astral.sh/uv/. Alternatively, replace 'uv run' in the config with the absolute path to your Python interpreter and run 'pip install -e .' first.

YouTube video analysis returns empty or truncated results

The analyze_youtube_video tool relies on Gemini's ability to access YouTube transcripts. Ensure the video is publicly available and has captions/subtitles enabled. Private or age-restricted videos cannot be analysed.

Frequently Asked Questions about Designing Real-World AI Agents Workshop

What is Designing Real-World AI Agents Workshop?

Designing Real-World AI Agents Workshop is a Model Context Protocol (MCP) server that hands-on workshop: build a multi-agent ai system from scratch — deep research agent + writing workflow served as mcp servers. includes code, slides, and video It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Designing Real-World AI Agents Workshop?

Follow the installation instructions on the Designing Real-World AI Agents Workshop GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Designing Real-World AI Agents Workshop?

Designing Real-World AI Agents Workshop works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Designing Real-World AI Agents Workshop free to use?

Yes, Designing Real-World AI Agents Workshop is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Coding Agents MCP Servers

Explore all coding agents servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "designing-real-world-ai-agents-workshop": { "command": "npx", "args": ["-y", "designing-real-world-ai-agents-workshop"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Designing Real-World AI Agents Workshop?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides