docs(integrations): document Go support for Agent Registry - #2123
Draft
wolo-lab wants to merge 1 commit into
Draft
docs(integrations): document Go support for Agent Registry#2123wolo-lab wants to merge 1 commit into
wolo-lab wants to merge 1 commit into
Conversation
The Agent Registry page was Python-only, even though the Go client shipped in ADK Go v2.1.0 as google.golang.org/adk/v2/agentregistry, so Go users had no documented way to discover registered agents and MCP servers. Add the Go language-support tag and a Go tab alongside Python in Installation, Use with Agent, both authentication sections, API Reference, and Configuration Options, following the tabbed pattern used by the other multi-language integration pages. Also repoint the Python RemoteA2aAgent link at the Python A2A quickstart, which the Go quickstart had replaced.
✅ Deploy Preview for adk-docs-preview ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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.
Summary
docs/integrations/agent-registry.mddocumented Python only. The Agent Registryclient landed in adk-go v2.1.0 as
google.golang.org/adk/v2/agentregistry,covering the same surface the page already describes for Python (discovery of
registered A2A agents, MCP servers and model endpoints, plus factory helpers that
turn a registry record into an agent or a toolset). This adds Go tabs throughout
and advertises Go support in the page badge.
What's in it
lst-gobadge atGo v2.1.0. The page had no prior Go content, so that is theversion support was introduced.
Servers, API Reference and Configuration Options, following the pattern used by
cloud-trace.md,mcp-toolbox-for-databases.mdandreflect-and-retry.md.agentregistry.Newand itsConfig, theList*/Get*/All*discovery triple,RemoteAgent,MCPToolset, and theegress options
WithA2AHTTPClient,WithA2AHeaders,WithMCPHTTPClientandWithMCPHeaders.google-adkis now language-neutral andpoints at Installation.
reference; the two existing Python entries are labelled as such.
Staged: https://deploy-preview-2123--adk-docs-preview.netlify.app/integrations/agent-registry/
Notes for reviewers
Python
RemoteA2aAgentlink pointed at/a2a/quickstart-consuming-go/. It nowpoints at
/a2a/quickstart-consuming/. Both pages carry the same anchor, whichis why this never showed up as a broken link, but it was sending Python readers
to the Go quickstart. Happy to split it out if you would rather keep this PR to
Go content only.
says so. In Go, only
*.googleapis.comMCP endpoints reuse the registryclient's Application Default Credentials, and A2A egress is never authenticated
for you. That is why the Go tabs document
WithA2AHTTPClientandWithMCPHTTPClientwhere the Python tabs documenthttpx_clientandheader_provider.### Required dependenciesnow sits inside the Python tab, since thea2aandagent-identityextras have no Go equivalent. It still appears in thepage ToC, matching how
mcp-toolbox-for-databases.mdnests headings in tabs.Verification
google.golang.org/adk/v2@v2.1.0.mkdocs build --strictis clean. Tabs and both language badges render, and theinternal link anchors resolve in the built site.
integration-reviewrules: single-line language-supportdiv, tabbed multi-language code, site-relative internal links,
*-latestmodelstring, no new nav entry needed.