diff --git a/README.md b/README.md index 47badd9..6896b19 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,14 @@ 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']