docs(integrations): document Go support for the Postman MCP server - #2211
Open
wolo-lab wants to merge 4 commits into
Open
docs(integrations): document Go support for the Postman MCP server#2211wolo-lab wants to merge 4 commits into
wolo-lab wants to merge 4 commits into
Conversation
The Postman page carried Python and TypeScript tabs only, so Go users had no documented way to reach the Postman MCP server even though adk-go needs no new code for it. Both transports the page describes are already covered by google.golang.org/adk/v2/tool/mcptoolset: mcp.CommandTransport for the local npx server, and Config.Endpoint plus Config.Auth for the remote streamable HTTP server, where auth.StaticToken produces the same Authorization: Bearer header the Python and TypeScript samples set by hand. Add the lst-go language-support span and a Go tab with the same Local and Remote sub-tabs as the other two languages, following the pattern used by agent-registry.md and mcp-toolbox-for-databases.md. The optional server flags are held in an args slice so the Configuration section's "add --full or --code to the args list" reads correctly for Go as well.
✅ 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.
Problem
docs/integrations/postman.mdcarries Python and TypeScript tabs only, so Go users have no documented path to the Postman MCP server. Nothing is missing in adk-go to support it: both transports the page describes are already covered bygoogle.golang.org/adk/v2/tool/mcptoolset.Summary
lst-golanguage-support span and a Go tab with the same Local MCP Server and Remote MCP Server sub-tabs as the other two languages.mcp.CommandTransportoverexec.CommandContext(ctx, "npx", args...), and passes the key incmd.Envlayered onos.Environ()sonpxkeeps itsPATH.Config.EndpointwithConfig.Auth. Passingauth.StaticTokensets the sameAuthorization: Bearer <key>header that the Python and TypeScript samples write by hand.argsslice, so the existing Configuration wording ("add--fullor--codeto theargslist") reads correctly for Go as well and needed no change.Verification
go vet, and aregofmt-clean againstgoogle.golang.org/adk/v2@v2.3.0.Config.EndpointandConfig.Authshipped in v2.1.0, so the remote sample needs that version or later.mkdocs build --strictexits 0. The built page renders three top-level tabs (Python, TypeScript, Go), each with both sub-tabs, and twolanguage-gocode blocks.Staged: https://deploy-preview-2211--adk-docs-preview.netlify.app/integrations/postman/