Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions g_agents_mcp/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from .trip_agent import root_agent

# Export the agent so it can be discovered by ADK
__all__ = ['root_agent']