docs: update ToolboxTool docstring#7
Merged
Conversation
jackwotherspoon
commented
Apr 9, 2025
| Example: | ||
| ```python | ||
| toolbox = ToolboxTool("http://127.0.0.1:8080") | ||
| toolbox = ToolboxTool("http://127.0.0.1:5000") |
Contributor
Author
There was a problem hiding this comment.
toolbox server default port is 5000 so updating it to match
|
how do you start this toolbox? |
Contributor
Author
@pentium10 You start it by installing and running the toolbox server. |
|
Unfortunately, that would add toolbox_langchain as a dependency. But I like the fix for the port! |
Contributor
Author
Ahh great point. I had not noticed |
ToolboxTool to tools.__init__.py
Jacksunwei
approved these changes
Apr 11, 2025
josegonzalesjjg
approved these changes
Apr 14, 2025
josegonzalesjjg
approved these changes
Apr 18, 2025
coder-aditi
pushed a commit
to coder-aditi/adk-python
that referenced
this pull request
Jul 2, 2025
docs: update ToolboxTool port in docstring
Px8Studio
added a commit
to Px8Studio/adk-python
that referenced
this pull request
Nov 14, 2025
Improve Docker setup, enhance documentation, and refactor agent architecture
This was referenced May 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update port for
ToolboxToolto match default port used for Toolbox server of5000.ToolboxToolis missing fromtools.__init__.py:adk-python/src/google/adk/tools/__init__.py
Lines 34 to 51 in 9002ace
This means users need to use the full import path for
ToolboxTool.This also means
ToolboxToolwill be excluded from being imported when users import all tools.Adding
ToolboxTooltotools.__init__.pymakes it easier for customers to leverage MCP Toolbox for databases.Once this change is released we ca update the
ToolboxToolimports in the docs back to their original form.