@@ -38,7 +38,10 @@ Run an Agent framework script e.g.:
3838- ` uv run agents_mcp_usage/basic_mcp/basic_mcp_use/oai-agent_mcp.py `
3939 - Requires ` OPENAI_API_KEY ` by default
4040
41- Check console or Logfire for output
41+ - Launch the ADK web UI for visual interaction with the agents:
42+ - ` make adk_basic_ui `
43+
44+ Check console, Logfire, or the ADK web UI for output
4245
4346## Project Overview
4447
@@ -55,7 +58,7 @@ This project aims to teach:
5558
5659- ** [ agents_mcp_usage/basic_mcp/] ( agents_mcp_usage/basic_mcp/ ) ** - Single MCP server integration examples
5760 - ** basic_mcp_use/** - Contains basic examples of single MCP usage:
58- - ` adk_mcp.py ` - Example of using MCP with Google's Agent Development Kit (ADK)
61+ - ` adk_mcp.py ` - Example of using MCP with Google's Agent Development Kit (ADK 1.3.0 )
5962 - ` langgraph_mcp.py ` - Example of using MCP with LangGraph
6063 - ` oai-agent_mcp.py ` - Example of using MCP with OpenAI Agents
6164 - ` pydantic_mcp.py ` - Example of using MCP with Pydantic-AI
@@ -154,6 +157,9 @@ uv run agents_mcp_usage/basic_mcp/basic_mcp_use/oai-agent_mcp.py
154157
155158# Pydantic-AI example
156159uv run agents_mcp_usage/basic_mcp/basic_mcp_use/pydantic_mcp.py
160+
161+ # Launch ADK web UI for visual interaction
162+ make adk_basic_ui
157163```
158164
159165More details on basic MCP implementation can be found in the [ basic_mcp README] ( agents_mcp_usage/basic_mcp/README.md ) .
@@ -218,7 +224,7 @@ uv run agents_mcp_usage/multi_mcp/multi_mcp_use/pydantic_mcp.py
218224uv run agents_mcp_usage/multi_mcp/eval_multi_mcp/evals_pydantic_mcp.py
219225
220226# Run multi-model benchmarking
221- uv run agents_mcp_usage/multi_mcp/eval_multi_mcp/run_multi_evals.py --models " gemini-2.5-pro,gemini-2.0-flash" --runs 5 --parallel
227+ uv run agents_mcp_usage/multi_mcp/eval_multi_mcp/run_multi_evals.py --models " gemini-2.5-pro-preview-06-05 ,gemini-2.0-flash" --runs 5 --parallel
222228
223229# Launch the evaluation dashboard
224230uv run streamlit run agents_mcp_usage/multi_mcp/eval_multi_mcp/merbench_ui.py
@@ -258,7 +264,7 @@ uv run agents_mcp_usage/multi_mcp/eval_multi_mcp/evals_pydantic_mcp.py
258264
259265# Multi-model parallel benchmarking
260266uv run agents_mcp_usage/multi_mcp/eval_multi_mcp/run_multi_evals.py \
261- --models " gemini-2.5-pro,gemini-2.0-flash,gemini-2.5-flash-preview-04-17 " \
267+ --models " gemini-2.5-pro-preview-06-05 ,gemini-2.0-flash,gemini-2.5-flash" \
262268 --runs 5 \
263269 --parallel \
264270 --output-dir ./results
@@ -288,6 +294,11 @@ A key advantage highlighted is flexibility; MCP allows developers to more easily
288294 ``` bash
289295 make install
290296 ```
297+
298+ To use the ADK web UI, run:
299+ ``` bash
300+ make adk_basic_ui
301+ ```
2913023 . Set up your environment variables in a ` .env ` file:
292303 ```
293304 LOGFIRE_TOKEN=your_logfire_token
0 commit comments