feat: package Learn toolset as .mcpb release asset#175
Merged
Conversation
Add manifest-learn.json and wire the Learn toolset (--learn) into the Release MCPB workflow so a postman-mcp-server-learn.mcpb asset is built and uploaded alongside the minimal, full, and code variants.
rubenbaraut
requested review from
akinard-postman,
akira28,
alexander-rubia and
garciasdos
as code owners
July 9, 2026 09:53
shruti-paranjape
approved these changes
Jul 9, 2026
alexander-rubia
approved these changes
Jul 9, 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.
Summary
The
v2.11.0release does not include a.mcpbbundle for the new Learn toolset. The server code already supports it (--learnflag →enabledResources.learn→searchLearningCenter), but theRelease MCPBworkflow only packaged theminimal,full, andcodevariants. This PR adds the missing Learn bundle.Changes
manifest-learn.jsonfollowing the existing manifest pattern, passing--learnto the server.postman_api_keyis keptrequiredfor consistency with the other manifests and with server startup (src/index.tsexits if no API key is set, even in learn mode)..github/workflows/mcpb-pack.yamlto:manifest-learn.jsonversion withpackage.jsonpostman-mcp-server-learn.mcpboverwrite: true)Notes
The workflow triggers on tag push, so this does not retroactively add the asset to the already-published
v2.11.0release. The Learn bundle will be produced on the next tag, or the workflow can be run manually viaworkflow_dispatch(which resolves the latest release and uploads withoverwrite: true, without re-publishing to the MCP Registry).