From 9fa20427bfa0845a61553434b0b28e7d17a2d3d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Esp=C3=AD=20Hern=C3=A1ndez?= Date: Tue, 1 Jul 2025 12:44:10 +0200 Subject: [PATCH 1/3] feat: add MCP HTTP streamable server installation instructions --- README.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 49 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index edd0bdb..5244d51 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ See more about the Model Context Protocol available transports in the [MCP specification](https://modelcontextprotocol.io/docs/concepts/transports). -Note: If you prefer to use the HTTP version, it's available at http://mcp.postman.com. - ## 🧰 VS Code Integration You can integrate your MCP server with Visual Studio Code to use it with VS Code extensions that support MCP. @@ -56,6 +54,55 @@ You can now use your Postman API tools with your VS Code extension through the M See [DOCKER.md](./DOCKER.md) for up-to-date build, Docker, and usage instructions. +## HTTP streamable version + +If you prefer to use the HTTP version, it's available at http://mcp.postman.com. Here are the instructions to install it: + +### 🧰 VS Code Integration + +``` +{ + "servers": { + "postman-api-http-server": { + "type": "mcp", + "url": "https://mcp.postman.com/mcp", + "headers": { + "Authorization": "Bearer ${input:postman-api-key}" + } + } + }, + "inputs": [ + { + "id": "postman-api-key", + "type": "promptString", + "description": "Enter your Postman API key" + } + ] + } +``` + +You will be asked to input the Postman API key, and the agent will perform calls to the Postman cloud MCP server (http://mcp.postman.com) + +### 🧰 Claude Integration + +Open the `claude_desktop_config.json` file, accessible from Claude preferences. Paste this information: + +``` +{ + "mcpServers": { + "postman-api": { + "command": "npx", + "args": [ + "mcp-remote", + "https://mcp.postman-beta.com/mcp", + "--header", + "Authorization: Bearer PMAK-YOUR-POSTMAN-API-KEY" + ] + } + } +} +``` + ## 💬 Questions and support - See the [Postman Agent Generator](https://postman.com/explore/agent-generator) page for updates and new capabilities. From c8692bc8033d6ef7686e309bbcbcd38d677091e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Esp=C3=AD=20Hern=C3=A1ndez?= Date: Tue, 1 Jul 2025 15:03:22 +0200 Subject: [PATCH 2/3] Update README.md Co-authored-by: Ashley Kinard <113702138+akinard-postman@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5244d51..81e8b8f 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ If you prefer to use the HTTP version, it's available at http://mcp.postman.com. } ``` -You will be asked to input the Postman API key, and the agent will perform calls to the Postman cloud MCP server (http://mcp.postman.com) +You will be asked to input your Postman API key. Afterwards, the agent performs calls to the Postman cloud MCP server (http://mcp.postman.com). ### 🧰 Claude Integration From cee8a883b88061acf47f072c27cee98be2742241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Esp=C3=AD=20Hern=C3=A1ndez?= Date: Tue, 1 Jul 2025 15:03:29 +0200 Subject: [PATCH 3/3] Update README.md Co-authored-by: Ashley Kinard <113702138+akinard-postman@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81e8b8f..a93a58a 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ You will be asked to input your Postman API key. Afterwards, the agent performs ### 🧰 Claude Integration -Open the `claude_desktop_config.json` file, accessible from Claude preferences. Paste this information: +Open the *claude_desktop_config.json* file, which is accessible from Claude preferences. Then, add the following: ``` {