Skip to content

Releases: postmanlabs/postman-mcp-server

v2.3.6

24 Sep 10:05
v2.3.6
2045a87
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.3.3...v2.3.6

v2.3.3

19 Sep 14:48
v2.3.3
bd79a1b
Compare
Choose a tag to compare

What's Changed

We've made the following updates to the Postman MCP server:

  • The Postman MCP Server now supports current user context. For example, if you ask for "my workspaces", it first gets your user ID, then performs the search using that user ID.
  • The server now supports MCPB packages (https://github.com/anthropics/mcpb). Ensure that you're using the latest version of Claude Desktop.
  • Improved mock server creation with MCP. The server now uses collection UIDs (userId-collectionId) format instead of ID format.

  • chore: sync tools and stdio/tests from postman-mcp-server by @mcpopenapibot[bot] in #47
  • chore: update deps by @garciasdos in #49

Full Changelog: v2.2.1...v2.3.3

v2.2.1

11 Sep 21:00
v2.2.1
ccb7e3f
Compare
Choose a tag to compare
chore: v2.2.1

v2.2.0

11 Sep 15:06
v2.2.0
863b4c9
Compare
Choose a tag to compare

What's Changed

  • This version introduces EU support for the MCP service. You can now use the --region flag to specify the Postman API region (us or eu).

Full Changelog: v2.1.4...v2.2.0

v2.1.4

09 Sep 14:16
v2.1.4
ba805a7
Compare
Choose a tag to compare

What's Changed

  • Update README.md by @akinard-postman in #41
  • chore: sync tools and stdio/tests from postman-mcp-server by @mcpopenapibot[bot] in #43

Full Changelog: v2.1.3...v2.1.4

v2.1.3

04 Sep 12:04
v2.1.3
e08a5ec
Compare
Choose a tag to compare

What's Changed

  • feat: add full and minimal versions of Postman MCP server manifests by @garciasdos in #40

Full Changelog: v2.1.2...v2.1.3

v2.1.2

27 Aug 14:45
2c7acb1
Compare
Choose a tag to compare

What's Changed

  • docs: update command to use npx for MCP server integration in VS Code by @garciasdos in #37

Full Changelog: v2.1.1...v2.1.2

v2.1.1

27 Aug 13:37
7e299f9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.1...v2.1.1

v2.0.1

19 Aug 08:35
v2.0.1
dfb7f12
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.0.1

v2.0.0

14 Aug 16:55
v2.0.0
d336848
Compare
Choose a tag to compare

This release of the Postman MCP server syncs tools and infrastructure from postman-mcp-server, standardizes tool naming conventions, and introduces configurable resource filtering for better performance and flexibility.

New features

  • Resource Filtering System — Added the --full flag and minimal tool configurations to enable you to choose between comprehensive (106 tools) or focused (37 tools) API access.

Improvements

  • Standardized Tool Naming — Converted all tool names from kebab-case to camelCase for consistency (for example, create-collection to createCollection).
  • Enhanced Logging — Added tool count and configuration mode indicators to startup logs for better debugging visibility.
  • Test Infrastructure — Updated integration tests to use camelCase tool names and added the --full flag for comprehensive testing.
  • Path Resolution — Fixed import path issues in compiled distribution files.
  • Performance and stability — Reduced the default tool count from 106 to 37 for faster startup and reduced memory footprint.

Bug fixes

  • Corrected path resolution for enabledResources import in distribution build.
  • Resolved test timeout issues by increasing test timeout to 30 seconds for workspace workflows.

Breaking changes

  • Tool Name Format — All tool names have changed from kebab-case to camelCase format. Update any existing integrations accordingly:

    • create-collection to createCollection
    • get-workspaces to getWorkspaces
    • delete-environment to deleteEnvironment
    • …and similarly for all other tools.
  • Default Tool Set — By default, only minimal (37) tools are now available. Use the --full flag to access all 106 tools.

Upgrade notes

Review your tool invocations and update them to use the camelCase naming convention. Add the --full flag when starting the server to access to all available tools.