From 39c161d7f75fd9b45d1edd995d285c578b393e32 Mon Sep 17 00:00:00 2001 From: Shameem Gafoor Date: Sun, 4 Jan 2026 15:49:31 +0000 Subject: [PATCH 1/2] Add instructions for setting up MCP server and include trip_agent to adk web --- README.md | 7 +++++++ g_agents_mcp/__init__.py | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 g_agents_mcp/__init__.py diff --git a/README.md b/README.md index 47badd9..6ba3181 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,13 @@ After the setup is complete: adk web ``` +3. **Run the MCP server using Google Toolbox** + ``` + cd mcp_tool_box + curl -O https://storage.googleapis.com/genai-toolbox/v0.24.0/darwin/arm64/toolbox + chmod +x toolbox + ./toolbox --tools-file "trip_tools.yaml" --port 7001 + ``` ## Deactivating the Environment When you're done, you can deactivate the virtual environment: diff --git a/g_agents_mcp/__init__.py b/g_agents_mcp/__init__.py new file mode 100644 index 0000000..5382912 --- /dev/null +++ b/g_agents_mcp/__init__.py @@ -0,0 +1,4 @@ +from .trip_agent import root_agent + +# Export the agent so it can be discovered by ADK +__all__ = ['root_agent'] From 8a7b1455c888e790ef2c6b20880e3513dd612d46 Mon Sep 17 00:00:00 2001 From: Shameem Gafoor Date: Sun, 4 Jan 2026 15:54:36 +0000 Subject: [PATCH 2/2] Add instructions for setting up MCP server and include trip_agent to adk web --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 6ba3181..6896b19 100644 --- a/README.md +++ b/README.md @@ -84,6 +84,7 @@ After the setup is complete: chmod +x toolbox ./toolbox --tools-file "trip_tools.yaml" --port 7001 ``` + ## Deactivating the Environment When you're done, you can deactivate the virtual environment: